QAccessibleTextCursorEvent#
The QAccessibleTextCursorEvent
class notifies of cursor movements. More…
Inherited by: QAccessibleTextUpdateEvent, QAccessibleTextSelectionEvent, QAccessibleTextRemoveEvent, QAccessibleTextInsertEvent
Synopsis#
Functions#
def
cursorPosition
()def
setCursorPosition
(position)
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#
This class is used with updateAccessibility()
.
- class PySide6.QtGui.QAccessibleTextCursorEvent(iface, cursorPos)#
PySide6.QtGui.QAccessibleTextCursorEvent(obj, cursorPos)
- Parameters:
cursorPos – int
obj –
PySide6.QtCore.QObject
Create a new QAccessibleTextCursorEvent
for iface
, The cursorPos
is the new cursor position.
Create a new QAccessibleTextCursorEvent
for object
. The cursorPos
is the new cursor position.
- PySide6.QtGui.QAccessibleTextCursorEvent.cursorPosition()#
- Return type:
int
Returns the cursor position.
See also
- PySide6.QtGui.QAccessibleTextCursorEvent.setCursorPosition(position)#
- Parameters:
position – int
Sets the cursor position
for this event.
See also