QAccessibleEditableTextInterface¶
The QAccessibleEditableTextInterface
class implements support for objects with editable text. More…
Detailed Description¶
When implementing this interface you will almost certainly also want to implement QAccessibleTextInterface
.
See also
- class PySide6.QtGui.QAccessibleEditableTextInterface¶
- PySide6.QtGui.QAccessibleEditableTextInterface.deleteText(startOffset, endOffset)¶
- Parameters
startOffset – int
endOffset – int
Deletes the text from startOffset
to endOffset
.
- PySide6.QtGui.QAccessibleEditableTextInterface.insertText(offset, text)¶
- Parameters
offset – int
text – str
Inserts text
at position offset
.
- 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
.
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.