CheckBoxListSelectedIndex Property

Gets or sets the index specifying the currently selected item. Unlike the RadioButtonList, this only selects the item. It will not change it to a checked state.

Definition

Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
public override int SelectedIndex { get; set; }

Property Value

Int32

This is a zero-based index into the items collection. A value of -1 indicates that there is no current selection.

Setting a new index value will raise the SelectedIndexChanged event.

If EnforceDefaultSelection is true, a SelectedIndex of -1 (no selection) is not allowed. Instead, the index specified by the DefaultSelection property is used instead. If the default value is outside the range of the data source, the last item is selected.

Exceptions

ArgumentOutOfRangeExceptionThis is thrown if the index is less than -1 or greater than the number of items in the collection.

See Also