Use the table functions to manipulate any Net.Data macro table variables that are passed to the language environment.
Row and column numbers begin with one (1).
Table 3. Table Utility Functions
Utility Function | Description |
---|---|
dtw_table_New() | Create a table object. |
dtw_table_Delete() | Delete a table object. |
dtw_table_SetCols() | Set the width of a table and allocate storage for the column headers. |
dtw_table_GetV() | Retrieve a table value. |
dtw_table_SetV() | Set a table value. |
dtw_table_GetN() | Retrieve a table column heading. |
dtw_table_SetN() | Set a table column heading. |
dtw_table_Rows() | Retrieve the current number of rows in a table. |
dtw_table_Cols() | Retrieve the current number of columns in a table. |
dtw_table_MaxRows() | Retrieve the maximum allowable number of rows in a table. |
dtw_table_QueryColnoNj() | Retrieve the column number of a column. |
dtw_table_AppendRow() | Add one or more rows to the end of a table. |
dtw_table_InsertRow() | Insert one or more rows in a table. |
dtw_table_DeleteRow() | Delete one or more rows from a table. |
dtw_table_InsertCol() | Insert one or more columns in a table. |
dtw_table_DeleteCol() | Delete one or more columns from a table. |