AppendRow
To append a Row to the end of the grid, use the AppendRow method. The AppendRow 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.
AppendRow(Value as String)
AppendRow(Row as StyleGridRow)
Value:
The value of the first cell in the appended row.
(Other cell values in the row should be set with the
Cell property)
Row:
This parameter is used in the 2nd variation of the AppendRow
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).