AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones de ventanas que pueden ser manipuladas por el usuario final
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Used to:
  • * find out whether the "Allow end users to modify the UI" option is enabled in a window (or internal window).
  • enable (or disable) the "Allow end users to modify the UI" option in a window (or internal window).
Example
// Enable the "Allow end users to modify the UI" option
// Allow the end user to move all the controls except for the OK Button control
WIN_OverviewWindow.WinEditMode = wePosition
BTN_OK.WinEditAllowed = weNone
WIN_OverviewWindow.EdActive(True)
Syntax

Determining if the "Allow end users to modify the UI" option is enabled Hide the details

<Result> = <Window>.EdActive()
<Result>: Boolean
  • True if the "Allow end users to modify the UI" option is enabled,
  • False if the "Allow end users to modify the UI" option is disabled.
<Window>: Window name
Name of the window or internal window to be used.

Enabling or disabling the "Allow end users to modify the UI" option Hide the details

<Window>.EdActive(<Enable>)
<Window>: Window name
Name of the window or internal window to be used.
<Enable>: Boolean
  • True to enable the "Allow end users to modify the UI" option. The authorizations of modifications must be defined by WinEditMode and WinEditAllowed.
  • False to disable the "Allow end users to modify the UI" option.
Component: wd290obj.dll
Versión mínima requerida
  • Versión 27
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 20/06/2023

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