AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
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.
Ejemplo
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.
Versión mínima requerida
  • Versión 20
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

Señalar un error o enviar una sugerencia | Ayuda local