ImageList.ImageCollection.IndexOfKey(String) 方法

定义

确定集合中具有指定键的首个图像的索引。

public:
 int IndexOfKey(System::String ^ key);
public int IndexOfKey (string key);
member this.IndexOfKey : string -> int
Public Function IndexOfKey (key As String) As Integer

参数

key
String

要检索其索引的图像的键。

返回

Int32

如果在集合中找到具有指定键的首个图像,则其索引为从零开始;否则为 -1。

注解

如果 IndexOfKey 连续调用,将首先检查最后返回的索引是否与键匹配,如果没有匹配项,搜索将从集合的开头开始。

图像的名称对应于图像中的 ImageList.ImageCollection键。 关键比较不区分大小写。 key如果参数为null空字符串,则IndexOfKey该方法返回 -1。

适用于