- class QAccessibleTableCellInterface#
The
QAccessibleTableCellInterface
class implements support for the IAccessibleTable2 Cell interface. More…Synopsis#
Virtual methods#
def
columnExtent()
def
columnIndex()
def
isSelected()
def
rowExtent()
def
rowHeaderCells()
def
rowIndex()
def
table()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
- abstract columnExtent()#
- Return type:
int
Returns the number of columns occupied by this cell accessible.
- abstract columnHeaderCells()#
- Return type:
.list of QAccessibleInterface
Returns the column headers as an array of cell accessibles.
- abstract columnIndex()#
- Return type:
int
Translates this cell accessible into the corresponding column index.
- abstract isSelected()#
- Return type:
bool
Returns a boolean value indicating whether this cell is selected.
- abstract rowExtent()#
- Return type:
int
Returns the number of rows occupied by this cell accessible.
- abstract rowHeaderCells()#
- Return type:
.list of QAccessibleInterface
Returns the row headers as an array of cell accessibles.
- abstract rowIndex()#
- Return type:
int
Translates this cell accessible into the corresponding row index.
- abstract table()#
- Return type:
Returns the
QAccessibleInterface
of the table containing this cell.