|
|
|
|
|
WinEdSelect (Function) In french: FenEdSelect Returns one of the controls selected when the interface is modified by the end user ("Allow end users to modify the UI" option enabled).
X is Control
X <- WinEdSelect(FEN_Formulaire)
WinEdSelectMinus(FEN_Formulaire, X)
X is Control
FOR i = 1 _TO_ WinEdSelectOccurrence(WIN_Form)
X <- WinEdSelect(WIN_Form, i)
Trace(X.Name)
END
Syntax
<Result> = WinEdSelect(<Window> [, <Index>])
<Result>: Control - If the multiple selection is not enabled, this parameter corresponds to the selected control.
- If the multiple selection is enabled, this parameter corresponds to the Nth control of the selection (<Index> parameter).
This result can be assigned to a Control variable in order to be used.
<Window>: Window name Name of the window or internal window to be used. This window must be in edit mode (WinEdActive). <Index>: Optional integer Index of the element in a multiple selection. If this parameter is not specified, the first selected control is taken into account.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|