ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Windows functions that can be handled by the end user
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
Minimum version required
  • Version 27
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/20/2023

Send a report | Local help