dtw_table_DeleteRow()

Usage

Deletes one or more rows beginning at the row specified in start_row.

Format

int dtw_table_DeleteRow(void *table, int start_row, int rows)

Parameters
table A pointer to the table to modify.
start_row The row number of the first row to delete.
rows The number of rows to delete.

Examples

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


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