PySide6.QtGui.QAccessibleTextUpdateEvent¶
- class QAccessibleTextUpdateEvent¶
The
QAccessibleTextUpdateEventclass notifies about text changes. This is for accessibles that support editable text such as line edits. This event occurs for example when a portion of selected text gets replaced by pasting a new text or in override mode of editors.Details
This class is used with
updateAccessibility().Synopsis¶
Methods¶
def
__init__()def
changePosition()def
textInserted()def
textRemoved()
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
- __init__(iface, position, oldText, text)¶
- Parameters:
iface –
QAccessibleInterfaceposition – int
oldText – str
text – str
Constructs a new
QAccessibleTextUpdateEventforiface. The text change takes place atpositionwhere theoldTextwas removed andtextinserted instead.- __init__(obj, position, oldText, text)
- Parameters:
obj –
QObjectposition – int
oldText – str
text – str
Constructs a new
QAccessibleTextUpdateEventforobject. The text change takes place atpositionwhere theoldTextwas removed andtextinserted instead.- changePosition()¶
- Return type:
int
Returns where the change took place.
- textInserted()¶
- Return type:
str
Returns the inserted text.
- textRemoved()¶
- Return type:
str
Returns the removed text.