|
|
|
|
|
The property EnterValue property allows you to: - find out whether the end user can enter or change values in a Spreadsheet control.
- allow or prevent the end user from entering or changing values in a Spreadsheet control.
Note: This property corresponds to the "Permitir entrada de valores" option in the "Detail" tab of the Spreadsheet control description window. IF CBOX_ReadOnly THEN
PSHEET_Spreadsheet.InputValue = True
ELSE
PSHEET_Spreadsheet.InputValue = False
END
Sintaxis
Finding out whether the user can change or add values Ocultar los detalles
<Result> = <Spreadsheet control>.InputValue
<Result>: Boolean - True if the user can:
- add, modify values and load an XLXS file,
- insert or delete columns or rows.
- False if the user cannot:
- add, modify values and load an XLXS file.
- insert or delete columns or rows.
<Spreadsheet control>: Control name Name of the Spreadsheet control to be used.
Allowing the user to modify or add values Ocultar los detalles
<Spreadsheet control>.InputValue = <Authorization>
<Spreadsheet control>: Control name Name of the Spreadsheet control to be used. <Authorization>: Boolean - True to allow the user to:
- add, modify values and load an XLXS file.
- insert or delete columns or rows.
- False if you don't want the user to:
- add, modify values and load an XLXS file.
- insert or delete columns or rows.
Observaciones If the InputFormula property is set to False and the InputValue property is set to True, the end user will be able to enter and change values in the Spreadsheet control.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|