dtw_row_SetCols()

Usage

Assigns the width of the row and allocates storage for the column headings. You can use the dtw_row_SetCols() utility function once for each row.

Format

int dtw_row_SetCols(void *row, int cols)

Parameters
row A pointer to a newly created row which has not yet allocated any columns.
cols The initial number of columns to allocate in the new row.

Examples

void *myRow;
 
rc = dtw_row_SetCols(myRow, 5);


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