ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • Single-selection and multi-selection List Box control
  • Limits
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
Selected is used to:
  • WINDEVAndroidiPhone/iPad Select, or determine if a row is selected in a List, ListView or Table control.
    Remark: Unlike ListSelect, this property is used to directly find out whether the row that corresponds to the specified index is selected.
  • WINDEV Select, or determine if a column or cell is selected in a Table control with row or column selection.
  • WEBDEV - Server codePHP Select, or determine if a tab menu option is selected.
Example
WINDEVAndroidiPhone/iPadJava
// Selects row 5 in the CITY List Box control
LIST_City[5].Selected = True
WEBDEV - Server codePHP
// Modifies the selected menu option
OPT_MobileOption.Selected = True
Syntax
WINDEVAndroidiPhone/iPadJava

Determining if an element is selected Hide the details

<Result> = <Control used>[<Row index>].Selected
<Result>: Boolean
  • True if the element is selected,
  • False otherwise.
<Control used>: Control name
Name of the control to be used:
  • Name of List Box, ListView or Table control: used to find out whether the row is selected.
  • WINDEV Column name: used to find out whether the cell is selected. If the row index is not specified, allows you to determine whether the column is selected.
<Row index>: Integer
Index of the row to use.
WINDEVAndroidiPhone/iPadJava

Selecting an element Hide the details

<Control used>[<Row index>].Selected = <Selection>
<Control used>: Control name
Name of the control to be used:
  • Name of List Box, ListView or Table control: used to select a row or not.
  • WINDEV Column name: used to select a cell or not. If the row index is not specified, enables you to select or deselect the table column.
<Row index>: Integer
Index of the row to use.
<Selection>: Boolean
  • True if the element must be selected,
  • False otherwise.
WEBDEV - Server codePHPAjax

Determining if a WEBDEV menu option is selected Hide the details

<Result> = <Option used>.Selected
<Result>: Boolean
  • True if the option is selected,
  • False otherwise.
<Option used>: Option name
Name of the menu option to use.
WEBDEV - Server codePHPAjax

Selecting a WEBDEV menu option Hide the details

<Option used>.Selected = <Selection>
<Option used>: Option name
Name of the option to select.
<Selection>: Boolean
  • True if the option must be selected,
  • False otherwise.
Remarks
WINDEVAndroidiPhone/iPadJava

Single-selection and multi-selection List Box control

In multi-selection List Box controls, the Selected property is used to:
  • find out the selected rows.
  • select several rows.
In single-selection List Box controls, when a row is selected with the Selected property, the previously selected row is automatically deselected.
iPhone/iPad The multi-selection List Box controls are not available.
WINDEVAndroidiPhone/iPadJava

Limits

The Selected property applies only to:
  • Table controls.
  • List Box controls.
  • ListView controls.
  • Table columns.
  • Table cells.
AndroidiPhone/iPadJava The Selected property applies only to List Box controls.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 04/06/2023

Send a report | Local help