ListView.SelectedIndexCollection.IndexOf(Int32) 方法

定义

ListView.SelectedIndexCollection 控件的 ListView.ListViewItemCollection 中返回指定索引的 ListView 内的索引。

public:
 int IndexOf(int selectedIndex);
public int IndexOf (int selectedIndex);
member this.IndexOf : int -> int
Public Function IndexOf (selectedIndex As Integer) As Integer

参数

selectedIndex
Int32

要在集合中查找的 ListView.ListViewItemCollection 中从零开始的索引。

返回

Int32

ListView.ListViewItemCollection 的指定索引在 ListView.SelectedIndexCollection 内所在的集合中的索引(索引从零开始计算);如果索引不在该集合中则为 -1。

注解

一旦知道某个项位于所选索引集合中, (使用 Contains 方法) ,可以使用 IndexOf 该方法来确定索引在内 ListView.SelectedIndexCollection的位置。

适用于

另请参阅