ListBox.IntegerCollection.IndexOf(Int32) 方法

定义

检索指定的整数在 ListBox.IntegerCollection 中的索引。

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

参数

item
Int32

要为其检索索引的整数。

返回

Int32

ListBox.IntegerCollection 中整数的从零开始的索引;否则为 -1。

注解

使用该方法 IndexOf 确定项在集合中的位置。 若要在调用此方法之前确定项是否位于集合中,请使用 Contains 该方法。

适用于