ListView.CheckedIndices Property

Definition

Gets the indexes of the currently checked items in the control.

public:
 property System::Windows::Forms::ListView::CheckedIndexCollection ^ CheckedIndices { System::Windows::Forms::ListView::CheckedIndexCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.ListView.CheckedIndexCollection CheckedIndices { get; }
[<System.ComponentModel.Browsable(false)>]
member this.CheckedIndices : System.Windows.Forms.ListView.CheckedIndexCollection
Public ReadOnly Property CheckedIndices As ListView.CheckedIndexCollection

Property Value

A ListView.CheckedIndexCollection that contains the indexes of the currently checked items. If no items are currently checked, an empty ListView.CheckedIndexCollection is returned.

Attributes

Remarks

This property is only useful when the CheckBoxes property of the ListView control is set to true. The CheckedIndices property returns a collection that contains the index positions in the ListView.ListViewItemCollection of all items that are checked in the control. For more information about how to manipulate the items in the collection, see ListView.CheckedIndexCollection.

If you want to obtain a collection of the items that are checked in the ListView control, instead of the index positions of the items that are checked, use the CheckedItems property.

Applies to

See also