Interface ITableBase
A base Java Table
Namespace: HP.LFT.SDK.Java
Assembly: HP.LFT.SDK.dll
Syntax
public interface ITableBase
Methods
ActivateCell(int, int)
Double-clicks a cell by row and column indexes.
Declaration
void ActivateCell(int row, int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | 0-based row number. |
| int | column | 0-based column index. |
ActivateCell(int, string)
Double-clicks a cell by row index and column header.
Declaration
void ActivateCell(int row, string columnHeader)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | 0-based row number. |
| string | columnHeader | The column header. |
ActivateColumn(int)
Double-clicks a column by column index.
Declaration
void ActivateColumn(int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | column | 0-based column index. |
ActivateColumn(string)
Double-clicks a column by column header.
Declaration
void ActivateColumn(string columnHeader)
Parameters
| Type | Name | Description |
|---|---|---|
| string | columnHeader | The column header. |
DeselectRowsRange(int, int)
Unselects a range of rows by rows indexes.
Declaration
void DeselectRowsRange(int fromRow, int toRow)
Parameters
| Type | Name | Description |
|---|---|---|
| int | fromRow | 0-based index of the first row. |
| int | toRow | 0-based index of the last row. |
SelectCell(int, int)
Clicks a cell by row and column indexes.
Declaration
void SelectCell(int row, int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | 0-based row number. |
| int | column | 0-based column index. |
SelectCell(int, string)
Clicks a cell by row index and column header.
Declaration
void SelectCell(int row, string columnHeader)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | 0-based row number. |
| string | columnHeader | The column header. |
SelectCellRange(int, int, int, int)
Selects a range of cells in a table by rows and columns indexes.
Declaration
void SelectCellRange(int fromRow, int fromColumn, int toRow, int toColumn)
Parameters
| Type | Name | Description |
|---|---|---|
| int | fromRow | 0-based index of the first row. |
| int | fromColumn | 0-based index of the first column. |
| int | toRow | 0-based index of the last row. |
| int | toColumn | 0-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./>.
Declaration
void SelectCellRange(int fromRow, string fromColumnHeader, int toRow, string toColumnHeader)
Parameters
| Type | Name | Description |
|---|---|---|
| int | fromRow | 0-based index of the first row. |
| string | fromColumnHeader | The header of the first column. |
| int | toRow | 0-based index of the last row. |
| string | toColumnHeader | The 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.
Declaration
void SelectColumnsRange(int fromColumn, int toColumn)
Parameters
| Type | Name | Description |
|---|---|---|
| int | fromColumn | 0-based index of the first column. |
| int | toColumn | 0-based index of the last column. |
SelectColumnsRange(string, string)
Selects a range of columns by column headers.
Declaration
void SelectColumnsRange(string fromColumnHeader, string toColumnHeader)
Parameters
| Type | Name | Description |
|---|---|---|
| string | fromColumnHeader | Header of the first column. |
| string | toColumnHeader | Header of the last column. |
SelectRowsRange(int, int)
Selects a range of rows by indexes.
Declaration
void SelectRowsRange(int fromRow, int toRow)
Parameters
| Type | Name | Description |
|---|---|---|
| int | fromRow | 0-based index of the first row. |
| int | toRow | 0-based index of the last row. |