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 Source

    AccessibilityAddColumnSelection(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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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)
    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    View Source

    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.

    Extension Methods

    EXamlExtensions.LoadFromEXamlByRelativePath<T>(T, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, Type)
    Extensions.LoadFromXamlFile<TXaml>(TXaml, string)
    • View Source
    Back to top Copyright © 2016-2025 Samsung
    Generated by DocFX