TableLayoutRowStyleCollection.Insert(Int32, RowStyle) Method

Definition

Inserts a RowStyle into the TableLayoutRowStyleCollection at the specified position.

public:
 void Insert(int index, System::Windows::Forms::RowStyle ^ rowStyle);
public void Insert (int index, System.Windows.Forms.RowStyle rowStyle);
member this.Insert : int * System.Windows.Forms.RowStyle -> unit
Public Sub Insert (index As Integer, rowStyle As RowStyle)

Parameters

index
Int32

The zero-based index at which the RowStyle should be inserted.

rowStyle
RowStyle

The RowStyle to insert into the TableLayoutRowStyleCollection. The value can be null.

Remarks

The Insert method reapplies the table layout to all the controls in the current TableLayoutPanel container.

The number of styles stored in a collection is limited only by available memory.

In collections of contiguous elements, such as the TableLayoutRowStyleCollection class, the elements that follow the insertion point move down to accommodate the inserted element. The indexes of the elements that are moved are also updated.

Applies to

See also