ListView.SelectedIndexCollection.IndexOf(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 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 中从零开始的索引。
返回
ListView.ListViewItemCollection 的指定索引在 ListView.SelectedIndexCollection 内所在的集合中的索引(索引从零开始计算);如果索引不在该集合中则为 -1。
注解
一旦知道某个项位于所选索引集合中, (使用 Contains 方法) ,可以使用 IndexOf 该方法来确定索引在内 ListView.SelectedIndexCollection的位置。