TableInsertRowΒΆ

TableInsertRow inserts a new row of cells to the specified table.

bool = TableInsertRow(hTable)
bool = TableInsertRow(hTable, nAfter)

Return Value

If the function succeeds, the return value bool is TRUE (1); otherwise it is FALSE (0).

Parameters

hTable

Identifies the table object.

nAfter

nAfter is the insert position. To insert the row of cells before the first row nAfter is 0. To add the row of cells at the bottom of the table set nAfter to a high value, e.g. 1000.

id-601844