ITabSheet.InsertRows

Syntax

InsertRows(Row: Integer; Count: Integer);

Parameters

Row is index of the row before which the specified number of rows will be added. Admissible parameter value lies within the [0; RowsCount) range.

Count is the number of added rows.

Description

The InsertRows method allows to insert the specified number of rows (the Count parameter) before the row, which index is passed as the Row input parameter.

Comments

To provide correct method performance the parameters ratio need to be as follows: Row + Count <= RowsCount.

See also:

ITabSheet