StatusBar.StatusBarPanelCollection.IndexOf(StatusBarPanel) Method

Definition

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

Parameters

panel
StatusBarPanel

The StatusBarPanel to locate in the collection.

Returns

The zero-based index where the panel is located within the collection; otherwise, negative one (-1).

Remarks

The IndexOf method enables you to determine where a panel is located within the collection. To determine whether an item is located within the collection before calling this method, use the Contains method.

Applies to

See also