ListViewItem.ListViewSubItemCollection.IndexOf 方法

定义

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

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

参数

subItem
ListViewItem.ListViewSubItem

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

返回

子项在集合中的位置的从零开始的索引。 如果该子项不在集合中,则返回值为负 1 (-1)。

注解

使用 IndexOf 方法可以确定子项在集合中的位置。 若要在调用此方法之前确定集合中是否包含子项,请使用 Contains 方法。

适用于

另请参阅