Adams Basic Package > Adams View > View Command Language > interface > interface data_table remove row

interface data_table remove row

Allows you to delete a row in a data table field.
The data table is similar to a excel workbook where a categorized data can be stored as array, locating each item by its row and column index. The data table can be created on a dialog box and the data is displayed using this command. This command is used to delete any row form the data table.

Format:

 
interface data_table remove row
data_table_name =
An Existing GI_data_table
range =
Integer
row_numbers =
Integer
use_row_selected =
True_only
column_indices =
Integer

Example:

 
interface data_table remove row &
data_table_name =
.gui.atv.dtable &
range =
4,5 &
column_indices =
2

Description:

 
Parameter
Value Type
Description
data_table _name
An Existing GI_data_table
Specifies the name of an existing data table
range
Integer
Specifies the range of rows to be removed
row_numbers
Integer
Specifies the row numbers where the contents are to be removed
use_row_selected
True_only
Specifies the rows from which the contents are to be removed
column_indices
Integer
Specifies the index of the column to be in which the row contents are to be removed

Extended Definition:

1. Any number of cell contents in a row can be removed either by selecting any of the three combinations, namely, 1) range and column indices, 2) row_numbers and the column indices, or 3) selected_row and column indices. Anyone of the parameters namely, 1) range, 2) row numbers and, 3) use selected row can be combined selected column to indicate the cell contents to be removed. If the range is specified 2-7, the value from 2 through 7 of the row index are selected to be removed. It set NONE for not removing any row.

Tips:

The parameters namely, 1) range, 2) row numbers, and, 3) use row selected are mutually exclusive to each other.