Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BaseListBoxControl.SetSelected(Int32, Boolean) Method

Sets the specified item’s selection state.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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