Interface ITableBase
A base Java Table
public interface ITableBase
Methods
ActivateCell(int, int)
Double-clicks a cell by row and column indexes.
void ActivateCell(int row, int column)
Parameters
ActivateCell(int, string)
Double-clicks a cell by row index and column header.
void ActivateCell(int row, string columnHeader)
Parameters
ActivateColumn(int)
Double-clicks a column by column index.
void ActivateColumn(int column)
Parameters
columnint0-based column index.
ActivateColumn(string)
Double-clicks a column by column header.
void ActivateColumn(string columnHeader)
Parameters
columnHeaderstringThe column header.
DeselectRowsRange(int, int)
Unselects a range of rows by rows indexes.
void DeselectRowsRange(int fromRow, int toRow)
Parameters
SelectCell(int, int)
Clicks a cell by row and column indexes.
void SelectCell(int row, int column)
Parameters
SelectCell(int, string)
Clicks a cell by row index and column header.
void SelectCell(int row, string columnHeader)
Parameters
SelectCellRange(int, int, int, int)
Selects a range of cells in a table by rows and columns indexes.
void SelectCellRange(int fromRow, int fromColumn, int toRow, int toColumn)
Parameters
fromRowint0-based index of the first row.
fromColumnint0-based index of the first column.
toRowint0-based index of the last row.
toColumnint0-based index of the last column.
Remarks
Important: This method is not supported for SWT tables.
SelectCellRange(int, string, int, string)
Selects a range of cells by row indexes and column headers./>.
void SelectCellRange(int fromRow, string fromColumnHeader, int toRow, string toColumnHeader)
Parameters
fromRowint0-based index of the first row.
fromColumnHeaderstringThe header of the first column.
toRowint0-based index of the last row.
toColumnHeaderstringThe header of the last column.
Remarks
Important: This method is not supported for SWT tables.
SelectColumnsRange(int, int)
Selects a range of columns by column indexes.
void SelectColumnsRange(int fromColumn, int toColumn)
Parameters
SelectColumnsRange(string, string)
Selects a range of columns by column headers.
void SelectColumnsRange(string fromColumnHeader, string toColumnHeader)
Parameters
fromColumnHeaderstringHeader of the first column.
toColumnHeaderstringHeader of the last column.
SelectRowsRange(int, int)
Selects a range of rows by indexes.
void SelectRowsRange(int fromRow, int toRow)