dtw_table_QueryColnoNj()

Usage

Returns the column number associated with a column heading.

Format

int dtw_table_QueryColnoNj(void *table, char *name)

Parameters
table A pointer to the table to query.
name A character string specifying the column heading for which the column number is returned. If the column heading does not exist in the table, 0 is returned.

Examples

void *myTable;
int columnNumber;
 
columnNumber = dtw_table_QueryColnoNj(myTable, "column 1");


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