TableLayoutRowStyleCollection.IndexOf(RowStyle) Method

Definition

Determines the index of a specific item in the TableLayoutRowStyleCollection.

public:
 int IndexOf(System::Windows::Forms::RowStyle ^ rowStyle);
public int IndexOf (System.Windows.Forms.RowStyle rowStyle);
member this.IndexOf : System.Windows.Forms.RowStyle -> int
Public Function IndexOf (rowStyle As RowStyle) As Integer

Parameters

rowStyle
RowStyle

The RowStyle to locate in the TableLayoutRowStyleCollection.

Returns

The index of rowStyle if found in the TableLayoutRowStyleCollection; otherwise, -1.

Remarks

The IndexOf method begins searching at the first element of the TableLayoutRowStyleCollection and ends either when it finds a match or it reaches the last element.

Applies to

See also