CheckedListBox.CheckedIndexCollection.Item[Int32] Property
Definition
Gets the index of a checked item in the CheckedListBox control.
public:
property int default[int] { int get(int index); };
[System.ComponentModel.Browsable(false)]
public int this[int index] { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Item(int) : int
Default Public ReadOnly Property Item(index As Integer) As Integer
Parameters
- index
- Int32
An index into the checked indexes collection. This index specifies the index of the checked item you want to retrieve.
Property Value
The index of the checked item. For more information, see the examples in the CheckedListBox.CheckedIndexCollection class overview.
- Attributes
Exceptions
Remarks
The index
parameter is an index into the checked indexes collection. The return value is the corresponding indexed value, which is the index of the checked item in the items collection.