Table of Contents

Interface ITableBase

Namespace
HP.LFT.SDK.Java
Assembly
HP.LFT.SDK.dll

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

row int

0-based row number.

column int

0-based column index.

ActivateCell(int, string)

Double-clicks a cell by row index and column header.

void ActivateCell(int row, string columnHeader)

Parameters

row int

0-based row number.

columnHeader string

The column header.

ActivateColumn(int)

Double-clicks a column by column index.

void ActivateColumn(int column)

Parameters

column int

0-based column index.

ActivateColumn(string)

Double-clicks a column by column header.

void ActivateColumn(string columnHeader)

Parameters

columnHeader string

The column header.

DeselectRowsRange(int, int)

Unselects a range of rows by rows indexes.

void DeselectRowsRange(int fromRow, int toRow)

Parameters

fromRow int

0-based index of the first row.

toRow int

0-based index of the last row.

SelectCell(int, int)

Clicks a cell by row and column indexes.

void SelectCell(int row, int column)

Parameters

row int

0-based row number.

column int

0-based column index.

SelectCell(int, string)

Clicks a cell by row index and column header.

void SelectCell(int row, string columnHeader)

Parameters

row int

0-based row number.

columnHeader string

The column header.

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

fromRow int

0-based index of the first row.

fromColumn int

0-based index of the first column.

toRow int

0-based index of the last row.

toColumn int

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./>.

void SelectCellRange(int fromRow, string fromColumnHeader, int toRow, string toColumnHeader)

Parameters

fromRow int

0-based index of the first row.

fromColumnHeader string

The header of the first column.

toRow int

0-based index of the last row.

toColumnHeader string

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.

void SelectColumnsRange(int fromColumn, int toColumn)

Parameters

fromColumn int

0-based index of the first column.

toColumn int

0-based index of the last column.

SelectColumnsRange(string, string)

Selects a range of columns by column headers.

void SelectColumnsRange(string fromColumnHeader, string toColumnHeader)

Parameters

fromColumnHeader string

Header of the first column.

toColumnHeader string

Header of the last column.

SelectRowsRange(int, int)

Selects a range of rows by indexes.

void SelectRowsRange(int fromRow, int toRow)

Parameters

fromRow int

0-based index of the first row.

toRow int

0-based index of the last row.