Skip to main content
A newer version of this page is available. .

BaseListBoxControl.SetSelected(Int32, Boolean) Method

Sets the specified item’s selection state.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

public void SetSelected(
    int index,
    bool value
)

Parameters

Name Type Description
index Int32

The zero-based index of the item whose selection state will be changed.

value Boolean

true to select the item; false to unselect the item.

Remarks

Use the SetSelected method to select/unselect the required item. If a list box control allows only one item to be selected, the SetSelected method first unselects the previously selected item and then selects the specified item.

The CheckedListBoxControl does not allow multiple selection of its items. For other list box controls, you can use the BaseListBoxControl.SelectionMode property to specify how items can be selected.

See Also