| <className> | - Class name. Value should be "UITable". |
| <nodes> | - Accociated array of UITableItem objects. |
| <onSelect> | - Code block. Action that will be call on row selection by double click or 'Enter' key pressed. |
| <altRowColor> | - UIColor object. Alternative color for even rows in table. Default value defined in macro variable ALT_TABLE_ROW_COLOR, that is defined in file clip-ui.ch. |
| ADDROW | Add row into table. |
| CLEAR | Clear table: remove all rows. |
| GETSELECTION | Get selected row identifier. |
| GETSELECTIONID | Get user identifier of selected row. |
| RESTOREPOSITION | Restore saved row position. |
| SAVEPOSITION | Get current selected row position. |
| SETACTION | Set action that will be call on selection by double click or 'Enter' key pressed. |
| SETALTROWCOLOR | Set alternative color for even rows in table. |
| UITABLE | Constructor. Create table. |
addRow(data,[<id>]) --> <oTableItem>
| <data> | - Array of strings. Array of values by columns. |
| <id> | - String. Row identifier. |
| Returns : | Appended row object (UITableItem). |
setAltRowColor(<color>)
| <color> | - UIColor object. Alternative color for even rows in table. |
| Returns : | NIL |