Return the accessible object at the specified row and column in the table.
If both row and column index are valid then the corresponding accessible
object is returned that represents the requested cell regardless of whether
the cell is currently visible (on the screen).
rowIndex | [in] the row index to retrieve the cell at |
columnIndex | [in] the column index to retrieve the cell at |
Translate the given row and column indices into the corresponding cell
index.
rowIndex | [in] the row index to return cell index at |
columnIndex | [in] the column index to return cell index at |
Translate the given cell index into the corresponding column index.
cellIndex | [in] index of the table cell to return column index for |
Translate the given cell index into the corresponding row index.
cellIndex | [in] index of the table cell to return row index for |
Translate the given cell index into the corresponding row and column
indices.
cellIndex | [in] cell index to return row and column indices for |
rowIndex | [out] row index at the given cell index |
columnIndex | [out] column index at the given cell index |
Return the number of columns occupied by the accessible cell at
the specified row and column in the table. The result differs from 1 if
the specified cell spans multiple columns.
row | [in] row index of the cell to return the column extent for |
column | [in] column index of the cell to return the column extent for |
Return the number of rows occupied by the accessible cell at the specified
row and column in the table. The result differs from 1 if the specified
cell spans multiple rows.
row | [in] row index of the cell to return the column extent for |
column | [in] column index of the cell to return the column extent for |
Return the description text of the specified column in the table.
columnIndex | [in] the column index to retrieve description for |
Return the description text of the specified row in the table.
rowIndex | [in] the row index to retrieve description for |
Return a boolean value indicating whether the specified column is
selected, i.e. all cells within the column are selected.
columnIndex | [in] the column index to determine if it's selected |
Return a boolean value indicating whether the specified row is selected,
i.e. all cells within the row are selected.
rowIndex | [in] the row index to determine whether it's selected |
Return a boolean value indicating whether the specified cell is selected.
rowIndex | [in] the row index of the cell |
columnIndex | [in] the column index of the cell |
Return an array of cell indices currently selected.
cellsArraySize | [in] length of array |
cellsArray | [in] array of indexes of selected cells |
Return an array of column indices currently selected.
columnsArraySize | [in] length of array |
columnsArray | [in] array of indices of selected columns |
Return an array of row indices currently selected.
rowsArraySize | [in] Length of array |
rowsArray | [in] array of indices of selected rows |
Select a row and unselects all previously selected rows.
rowIndex | [in] the row index to select |
Select a column and unselects all previously selected columns.
columnIndex | [in] the column index to select |
Unselect the given row, leaving other selected rows selected (if any).
rowIndex | [in] the row index to select |
Unselect the given column, leaving other selected columns selected (if any).
columnIndex | [in] the column index to select |
Use heuristics to determine if table is most likely used for layout.
Return the caption accessible for the table. For example, html:caption
element of html:table element.
Return summary description for the table. For example, @summary attribute
on html:table element.
Return columns count in the table.
Return rows count in the table.
Return the total number of selected cells.
Return the total number of selected columns.
Return the total number of selected rows.
Return an array of selected cells.