QAccessibleTableCellInterface#
The QAccessibleTableCellInterface
class implements support for the IAccessibleTable2 Cell interface. More…
Synopsis#
Virtual functions#
def
columnExtent
()def
columnHeaderCells
()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#
- class PySide6.QtGui.QAccessibleTableCellInterface#
- abstract PySide6.QtGui.QAccessibleTableCellInterface.columnExtent()#
- Return type:
int
Returns the number of columns occupied by this cell accessible.
- abstract PySide6.QtGui.QAccessibleTableCellInterface.columnHeaderCells()#
Returns the column headers as an array of cell accessibles.
- abstract PySide6.QtGui.QAccessibleTableCellInterface.columnIndex()#
- Return type:
int
Translates this cell accessible into the corresponding column index.
- abstract PySide6.QtGui.QAccessibleTableCellInterface.isSelected()#
- Return type:
bool
Returns a boolean value indicating whether this cell is selected.
- abstract PySide6.QtGui.QAccessibleTableCellInterface.rowExtent()#
- Return type:
int
Returns the number of rows occupied by this cell accessible.
- abstract PySide6.QtGui.QAccessibleTableCellInterface.rowHeaderCells()#
Returns the row headers as an array of cell accessibles.
- abstract PySide6.QtGui.QAccessibleTableCellInterface.rowIndex()#
- Return type:
int
Translates this cell accessible into the corresponding row index.
- abstract PySide6.QtGui.QAccessibleTableCellInterface.table()#
- Return type:
Returns the QAccessibleInterface
of the table containing this cell.