interface nsIAccessibleTable
nsIAcc Interface which contains tabular or row/column information
-
attribute nsIAccessible caption
- get the caption for the table
-
attribute AString summary
- Gets the summary description of the table
-
readonly attribute long columns
- Gets the the number of columns in the table
-
readonly attribute nsIAccessibleTable
columnHeader
- Gets the column header of a specified column in an accessible table
-
readonly attribute long rows
- Gets the number of rows in the table
-
readonly attribute nsIAccessibleTable
rowHeader
- Gets the row header of a specified row in an accessible table
-
void getSelectedColumns
(out unsigned long columnsSize, [retval,
array, size_is(columnsSize)] out long
columns
) - Gets the selected columns of the table.
-
void getSelectedRows
(out unsigned long rowsSize,
[retval, array, size_is(rowsSize)] out long
rows
) - Gets the selected rows of the table.
-
nsIAccessible cellRefAt
(in long row, in long column)
- Gets a reference to the table cell at row, column.
-
long getIndexAt
(in long row, in long
column) - Gets a long result representing the index at the specified row and column.
-
long getColumnAtIndex
(in long index) - Gets a long representing the column at the specified index
-
long getRowAtIndex
(in long index)
- Gets a long representing the row at the specified index
-
long getColumnExtentAt
(in long
row, in long column) - Gets the number of columns occupied by the accessible object at the specified row and column in the table.
-
long getRowExtentAt
(in long
row, in long column) - Gets the number of rows occupied by the accessible object at the specified row and column in the table.
-
AString getColumnDescription
(in
long column) - gets the description of the specified column
-
AString getRowDescription
(in long row) - gets the description of the specified row
-
boolean isColumnSelected
(in long column) - Gets a boolean value indicating whether the specified column is selected
-
boolean isRowSelected
(in long row) - Gets a boolean value indicating whether the specified row is selected
-
boolean isCellSelected
(in long row, in long column) - Gets a boolean value indicating whether the cell at the specified row and column is selected
Public Fields
Public Methods
Documentation
nsIAcc Interface which contains tabular or row/column information
attribute nsIAccessible caption -
get the caption for the table
attribute AString summary -
Gets the summary description of the table
readonly attribute long columns -
Gets the the number of columns in the table
readonly attribute nsIAccessibleTable
columnHeader -
Gets the column header of a specified column in an accessible table
readonly attribute long rows -
Gets the number of rows in the table
readonly attribute nsIAccessibleTable
rowHeader -
Gets the row header of a specified row in an accessible table
void getSelectedColumns(out unsigned long columnsSize, [retval, array, size_is(columnsSize)]
out long columns
) - Gets the selected columns of the table.
void getSelectedRows(out unsigned long rowsSize, [retval, array, size_is(rowsSize)]
out long rows
) - Gets the selected rows of the table.
nsIAccessible cellRefAt(in long row, in long column) -
Gets a reference to the table cell at row, column.
- Parameters:
-
row - indicates the row number
column - indicates the column number
- Returns:
-
a nsIAccessible representing the referred cell
long getIndexAt(in long row, in long column) -
Gets a long result representing the index at the specified row and column.
The value NS_ERROR_NOT_IMPLEMENTED is returned if the object at row,column
is not a child of table or table does not implement this interface
- Parameters:
-
row - indicates the row number
column - indicates the column number
- Returns:
-
a long index
long getColumnAtIndex(in long index) -
Gets a long representing the column at the specified index
- Parameters:
-
index - input the index
- Returns:
-
the column number
long getRowAtIndex(in long index) -
Gets a long representing the row at the specified index
- Parameters:
-
index - input the index
- Returns:
-
the row number
long getColumnExtentAt(in long row, in long column) -
Gets the number of columns occupied by the accessible object at the specified
row and column in the table.
- Parameters:
-
row - specify the row
column - specify the column
- Returns:
-
the number of columns
long getRowExtentAt(in long row, in long column) -
Gets the number of rows occupied by the accessible object at the specified
row and column in the table.
- Parameters:
-
row - specify the row
column - specify the column
- Returns:
-
the number of rows
AString getColumnDescription(in long column) -
gets the description of the specified column
- Parameters:
-
column - specify the column number
- Returns:
-
an AString description
AString getRowDescription(in long row) -
gets the description of the specified row
- Parameters:
-
row - specify the row number
- Returns:
-
an AString description
boolean isColumnSelected(in long column) -
Gets a boolean value indicating whether the specified column is selected
- Parameters:
-
column - specify the column number
- Returns:
-
a boolean result representing if the column is selected
boolean isRowSelected(in long row) -
Gets a boolean value indicating whether the specified row is selected
- Parameters:
-
column - specify the row number
- Returns:
-
a boolean result representing if the row is selected
boolean isCellSelected(in long row, in long column) -
Gets a boolean value indicating whether the cell at the specified row and
column is selected
- Parameters:
-
row - specify the row number
column - specify the column number
- This class has no child classes.
This page was generated with the help of DOC++ .