ListView.ColumnHeaderCollection.IndexOfKey(String) Метод
Определение
Определяет индекс для столбца с указанным ключом.Determines the index for a column with the specified key.
public:
virtual int IndexOfKey(System::String ^ key);
public virtual int IndexOfKey (string key);
abstract member IndexOfKey : string -> int
override this.IndexOfKey : string -> int
Public Overridable Function IndexOfKey (key As String) As Integer
Параметры
- key
- String
Имя столбца, для которого нужно извлечь индекс.The name of the column to retrieve the index for.
Возвращаемое значение
Индекс (с нуля) первого вхождения столбца с указанным именем, если присутствует; в противном случае -1.The zero-based index for the first occurrence of the column with the specified name, if found; otherwise, -1.
Комментарии
При сравнении ключей регистр символов не учитывается.The key comparison is not case-sensitive. Если key
имеет значение null
или является пустой строкой, IndexOfKey возвращает значение-1..
If key
is null
or an empty string, IndexOfKey returns -1.
NameСвойство соответствует ключу для столбца в ListView.ColumnHeaderCollection .The Name property corresponds to the key for a column in the ListView.ColumnHeaderCollection.
Если IndexOfKey вызывается последовательно, последний возвращенный индекс будет проверяться на соответствие ключу первым, и если совпадений нет, поиск начинается в начале коллекции.If IndexOfKey is called successively, the last returned index will be checked for a key match first, and if there is no match, the search starts at the beginning of the collection.