dtw_table_InsertRow()

Usage

Inserts one or more rows after the specified row.

Format

int dtw_table_InsertRow(void *table, int after_row, int rows)

Parameters
table A pointer to the table to modify.
after_row The number of the row after which the new rows are inserted. To insert rows at the beginning of the table, specify 0.
rows The number of rows to insert.

Examples

void *myTable;
 
rc = dtw_table_InsertRow(myTable, 3, 10);


[ Top of Page | Previous Page | Next Page | Index ]