ListBox.SelectedIndexCollection.Contains(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定指定索引是否位于集合内。
public:
bool Contains(int selectedIndex);
public bool Contains (int selectedIndex);
member this.Contains : int -> bool
Public Function Contains (selectedIndex As Integer) As Boolean
参数
- selectedIndex
- Int32
要在集合中定位的索引。
返回
如果来自 ListBox.ObjectCollection 的 ListBox 的指定索引为此集合中的项,则为 true
;否则,为 false
。
注解
使用此方法 Contains 可以确定类中的 ListBox.ObjectCollection 索引位置是否是存储在其中 ListBox.SelectedIndexCollection所选索引的成员。 可以使用此选项来确定是否选择了多选 ListBox 选择中的特定项。