Uses of Interface
com.ebasetech.xi.api.TableColumn

Packages that use TableColumn
com.ebasetech.xi.api   
 

Uses of TableColumn in com.ebasetech.xi.api
 

Subinterfaces of TableColumn in com.ebasetech.xi.api
 interface WebFormTableColumn
          The WebFormTableColumn represents a table column in an interactive web form.
 

Methods in com.ebasetech.xi.api that return TableColumn
 TableColumn Table.getColumn(java.lang.String columnName)
          Returns the specified table column or null if the column does not exist.
 TableColumn[] Table.getColumns()
          Returns an array of all columns in the table.
 

Methods in com.ebasetech.xi.api with parameters of type TableColumn
 int Table.findRow(TableColumn column, java.lang.Object value)
          Returns the first row number with the specified column value, or -1 if no match is found.
 java.lang.Object Table.getColumnValueOnRow(TableColumn column, int row)
          Returns an Object representing the value of the table cell at the specified column and row.
 void Table.setColumnValueOnRow(TableColumn column, int row, java.lang.Object value)
          Sets a value for the table cell at the specified column and row.
 void Table.sort(TableColumn column)
          Sorts the table rows using the single column specified by column in ascending order.
 void Table.sort(TableColumn[] columns)
          Sorts the table rows using multiple columns in ascending order.
 void Table.sort(TableColumn[] columns, java.lang.String[] directions)
          Sorts the table rows using multiple columns.
 void Table.sort(TableColumn column, java.lang.String direction)
          Sorts the table rows using the single column specified by column in the order specified by direction.