StatusBar.StatusBarPanelCollection.IndexOf(StatusBarPanel) Метод
Определение
Возвращает индекс указанной панели в коллекции.Returns the index within the collection of the specified panel.
public:
int IndexOf(System::Windows::Forms::StatusBarPanel ^ panel);
public int IndexOf (System.Windows.Forms.StatusBarPanel panel);
member this.IndexOf : System.Windows.Forms.StatusBarPanel -> int
Public Function IndexOf (panel As StatusBarPanel) As Integer
Параметры
- panel
- StatusBarPanel
Объект StatusBarPanel для поиска в коллекции.The StatusBarPanel to locate in the collection.
Возвращаемое значение
Отсчитываемый от нуля индекс, соответствующий данной панели в коллекции, в противном случае минус единица (-1).The zero-based index where the panel is located within the collection; otherwise, negative one (-1).
Комментарии
IndexOfМетод позволяет определить, где находится панель в коллекции.The IndexOf method enables you to determine where a panel is located within the collection. Чтобы определить, находится ли элемент в коллекции перед вызовом этого метода, используйте Contains метод.To determine whether an item is located within the collection before calling this method, use the Contains method.