QAccessibleEditableTextInterface#
The QAccessibleEditableTextInterface class implements support for objects with editable text. More…
Synopsis#
Virtual functions#
def
deleteText(startOffset, endOffset)def
insertText(offset, text)def
replaceText(startOffset, endOffset, text)
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#
When implementing this interface you will almost certainly also want to implement QAccessibleTextInterface .
See also
- class PySide6.QtGui.QAccessibleEditableTextInterface#
- abstract PySide6.QtGui.QAccessibleEditableTextInterface.deleteText(startOffset, endOffset)#
- Parameters:
startOffset – int
endOffset – int
Deletes the text from startOffset to endOffset.
- abstract PySide6.QtGui.QAccessibleEditableTextInterface.insertText(offset, text)#
- Parameters:
offset – int
text – str
Inserts text at position offset.
- abstract PySide6.QtGui.QAccessibleEditableTextInterface.replaceText(startOffset, endOffset, text)#
- Parameters:
startOffset – int
endOffset – int
text – str
Removes the text from startOffset to endOffset and instead inserts text.