InsertRow

To insert a Row, use the InsertRow method. The InsertRow has two variations, which means that this is a overwritten method, which means that you have to use () like if it were a function in REALbasic.

InsertRow(Where as Integer, Value as String)
InsertRow(Where as Integer, Row as GridRow)

Where:
The row value of where the row is to be inserted.

Value:
The text value of the first cell in the inserted row.
(Other cell values in the row should be set with the
Cell or WritableCell property)

Row:
This parameter is used in the 2nd variation of the InsertRow
method. The Row should be a precreated row, or a Row that you
want to link to this Grid (from another Grid or from a different
location within this Grid).