ListView::SelectedListViewItemCollection::Count Property

 

Gets the number of items in the collection.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
[BrowsableAttribute(false)]
property int Count {
	virtual int get() sealed;
}

Property Value

Type: System::Int32

The number of items in the collection.

This property enables you to determine the number of selected items in the ListView control. You can then use this value when looping through the values of the collection and you need to provide a number of iterations to perform the loop. Unless the MultiSelect property of the ListView is set to true, this property always returns a value of zero (0) or one (1) depending on whether you have a selected item.

.NET Framework
Available since 1.1
Return to top
Show: