Interface IAtspiTable
Definition
- Namespace:
- Tizen.NUI.Accessibility
- Assembly:
- Tizen.NUI.dll
Interface representing a table.
public interface IAtspiTable
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
Methods
View SourceAccessibilityAddColumnSelection(int)
Selects a column.
Declaration
bool AccessibilityAddColumnSelection(int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | column | Column number |
Returns
| Type | Description |
|---|---|
| bool | True on success, false otherwise |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityAddRowSelection(int)
Selects a row.
Declaration
bool AccessibilityAddRowSelection(int row)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | Row number |
Returns
| Type | Description |
|---|---|
| bool | True on success, false otherwise |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetCaption()
Gets the table's caption.
Declaration
View AccessibilityGetCaption()
Returns
| Type | Description |
|---|---|
| View | The caption or null |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetCell(int, int)
Gets the cell at the specified position.
Declaration
IAtspiTableCell AccessibilityGetCell(int row, int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | Row number |
| int | column | Column number |
Returns
| Type | Description |
|---|---|
| IAtspiTableCell | The cell or null |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetChildIndex(int, int)
Gets the one-dimensional index of a cell.
Declaration
int AccessibilityGetChildIndex(int row, int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | Row number |
| int | column | Column number |
Returns
| Type | Description |
|---|---|
| int | The one-dimensional index |
Remarks
The returned index should be such that:
GetChildAtIndex(GetChildIndex(row, column)) == GetCell(row, column)
AccessibilityGetColumnCount()
Gets the number of columns.
Declaration
int AccessibilityGetColumnCount()
Returns
| Type | Description |
|---|---|
| int | The number of columns |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetColumnDescription(int)
Gets the description of a column.
Declaration
string AccessibilityGetColumnDescription(int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | column | Column number |
Returns
| Type | Description |
|---|---|
| string | The description of the column |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetColumnHeader(int)
Gets the header of a column.
Declaration
View AccessibilityGetColumnHeader(int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | column | Column number |
Returns
| Type | Description |
|---|---|
| View | The column header or null |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetPositionByChildIndex(int)
Gets the position (row and column) of a cell.
Declaration
Tuple<int, int> AccessibilityGetPositionByChildIndex(int childIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | childIndex | One-dimensional index of the cell |
Returns
| Type | Description |
|---|---|
| Tuple<, ><int, int> | A pair of integers (row index, column index) |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetRowCount()
Gets the number of rows.
Declaration
int AccessibilityGetRowCount()
Returns
| Type | Description |
|---|---|
| int | The number of rows |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetRowDescription(int)
Gets the description of a row.
Declaration
string AccessibilityGetRowDescription(int row)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | Row number |
Returns
| Type | Description |
|---|---|
| string | The description of the row |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetRowHeader(int)
Gets the header of a row.
Declaration
View AccessibilityGetRowHeader(int row)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | Row number |
Returns
| Type | Description |
|---|---|
| View | The row header or null |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetSelectedColumnCount()
Gets the number of selected columns.
Declaration
int AccessibilityGetSelectedColumnCount()
Returns
| Type | Description |
|---|---|
| int | The number of selected columns |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetSelectedColumns()
Gets all selected columns' numbers.
Declaration
IEnumerable<int> AccessibilityGetSelectedColumns()
Returns
| Type | Description |
|---|---|
| IEnumerable<><int> | Selected columns' numbers |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetSelectedRowCount()
Gets the number of selected rows.
Declaration
int AccessibilityGetSelectedRowCount()
Returns
| Type | Description |
|---|---|
| int | The number of selected rows |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetSelectedRows()
Gets all selected rows' numbers.
Declaration
IEnumerable<int> AccessibilityGetSelectedRows()
Returns
| Type | Description |
|---|---|
| IEnumerable<><int> | Selected rows' numbers |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityGetSummary()
Gets the table's summary.
Declaration
View AccessibilityGetSummary()
Returns
| Type | Description |
|---|---|
| View | The summary or null |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityIsCellSelected(int, int)
Checks if a cell is selected.
Declaration
bool AccessibilityIsCellSelected(int row, int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | Row number of the cell |
| int | column | Column number of the cell |
Returns
| Type | Description |
|---|---|
| bool | True if the cell is selected, false otherwise |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityIsColumnSelected(int)
Checks if a column is selected.
Declaration
bool AccessibilityIsColumnSelected(int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | column | Column number |
Returns
| Type | Description |
|---|---|
| bool | True if the column is selected, false otherwise |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityIsRowSelected(int)
Checks if a row is selected.
Declaration
bool AccessibilityIsRowSelected(int row)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | Row number |
Returns
| Type | Description |
|---|---|
| bool | True if the row is selected, false otherwise |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityRemoveColumnSelection(int)
Unselects a column.
Declaration
bool AccessibilityRemoveColumnSelection(int column)
Parameters
| Type | Name | Description |
|---|---|---|
| int | column | Column number |
Returns
| Type | Description |
|---|---|
| bool | True on success, false otherwise |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.
AccessibilityRemoveRowSelection(int)
Unselects a row.
Declaration
bool AccessibilityRemoveRowSelection(int row)
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | Row number |
Returns
| Type | Description |
|---|---|
| bool | True on success, false otherwise |
Remarks
The selection methods extend the Selection interface, so both should be implemented by table and grid controls.