ListView.CheckedListViewItemCollection.IndexOf(ListViewItem) 方法

定义

返回指定的项在集合中的索引。

public:
 int IndexOf(System::Windows::Forms::ListViewItem ^ item);
public int IndexOf (System.Windows.Forms.ListViewItem item);
member this.IndexOf : System.Windows.Forms.ListViewItem -> int
Public Function IndexOf (item As ListViewItem) As Integer

参数

item
ListViewItem

ListViewItem,表示要在集合中查找的项。

返回

Int32

集合中项的从零开始的索引;否则为 -1。

注解

一旦知道项位于集合中 (使用Contains方法) ,则可以使用IndexOf该方法来确定存储ListView其中的特定项ListView.ListViewItemCollection的位置ListView.CheckedListViewItemCollection

适用于

另请参阅