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 WinEditAllowed property is used to determine and configure the actions allowed on a control when the window switches to "Allow end users to modify the UI" mode.
Ejemplo
// Allows the size and position to be modified in the window 
// except for the OK button 
WIN_MyWindow.WinEditMode = weSelection + wePosition + weSize
BTN_OK.WinEditAllowed = weNone
WinEdActive(WIN_MyWindow, True)
// Check the authorizations
IF BitwiseAND(MySelf.WinEditAllowed, weSelection) = weSelection THEN
Trace("Selection allowed")
END
Sintaxis

Finding out the operations allowed on a control Ocultar los detalles

<Result> = <Control used>.WinEditAllowed
<Result>: Integer constant (or combination of constants)
Combination of the following constants:
weAddRepositionableNoteThe end user can add a repositionable note in the window.
weAddWireThe end user can add a wire between several controls.
weChangeTooltipThe end user can modify the tooltips of the controls.
weChangeWireThe end user can modify the wires between the controls.
weMoveControlThe end user can move controls.
weMultiSelectionThe end user can select several controls at the same time.
Warning: This constant requires the use of the constant feSélection.
wePositionThe end user can move controls.
weResizeControlThe end user can resize the controls.
weSelectionThe end user can select controls.
weSizeThe end user can resize controls.
<Control used>: Control name
Name of the control to be used.

Defining the operations allowed on a control Ocultar los detalles

<Control used>.WinEditAllowed = <Authorized operations>
<Control used>: Control name
Name of the control to be used.
<Authorized operations>: Integer constant (or combination of constants)
Authorized field manipulations:
weAddRepositionableNoteThe end user can add a repositionable note in the window.
weAddWireThe end user can add a wire between several controls.
weAllThe end user can modify everything in the window.
This option cannot be combined with one of the other options.
weChangeTooltipThe end user can modify the tooltips of the controls.
weChangeWireThe end user can modify the wires between the controls.
weMoveControlThe end user can move controls.
weMultiSelectionThe end user can select several controls at the same time.
Warning: This constant requires the use of the constant feSélection.
weNoneThe end user cannot modify or select anything in the window. This option is the default option.
This option cannot be combined with one of the other options.
wePositionThe end user can move controls.
weResizeControlThe end user can resize the controls.
weSelectionThe end user can select controls.
weSizeThe end user can resize controls.
Versión mínima requerida
  • Versión 21
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