ListViewItem.ListViewSubItemCollection.IndexOf 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定子项在集合中的索引。
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 方法。