|
|
|
|
|
Multiselection (Property) In french: Multisélection
The Multiselection property gets and sets the selection mode:
IF INT_Multisel = True THEN
TABLE_Table1.Multiselection = True
ELSE
TABLE_Table1.Multiselection = False
END
Syntax
Getting the selection mode Hide the details
<Selection mode> = <Control used>.Multiselection
<Selection mode>: Boolean - True if the control allows for multiple selection,
- False if the control allows for single-selection only.
<Control used>: Control name Name of the field to be manipulated:
Changing the selection mode Hide the details
<Control used>.Multiselection = <New selection mode>
<Control used>: Control name Name of the field to be manipulated: <New selection mode>: Boolean - True if the control must allow for multiple selection,
- False if the control must be single-selection. If the control switches to single-selection while several elements are selected, only the first selected element is kept.
Remarks Limitations The Multiselection property can be used with the following controls: - "Text token" Edit control.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|