ListView.SelectedListViewItemCollection.Count 属性

定义

获取集合中的项数。

public:
 property int Count { int get(); };
[System.ComponentModel.Browsable(false)]
public int Count { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Count : int
Public ReadOnly Property Count As Integer

属性值

Int32

集合中项的数目。

实现

属性

注解

此属性使你能够确定控件中的 ListView 选定项数。 然后,可以在循环访问集合的值时使用此值,并且需要提供多次迭代来执行循环。 除非属性MultiSelectListView设置为 true,否则此属性始终返回零 (0) 或 1 (1) 的值,具体取决于你是否具有所选项。

适用于