dtw_table_DeleteCol()

Usage

Deletes one or more columns beginning at the column specified in start_col. To delete all of the rows and columns of a table, substitute the utility function dtw_table_Cols() for the cols parameter.

dtw_table_DeleteCol(table, 1, dtw_table_Cols());

Format

int dtw_table_DeleteCol(void *table, int start_col, int cols)

Parameters
table A pointer to the table to modify.
start_col The column number of the first column to delete.
rows The number of columns to delete.

Examples

void *myTable;
 
rc = dtw_table_DeleteCol(myTable, 1, 10);


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