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
.IAccessible2 Specification
See also
- class PySide2.QtGui.QAccessibleEditableTextInterface¶
- PySide2.QtGui.QAccessibleEditableTextInterface.deleteText(startOffset, endOffset)¶
- Parameters:
startOffset – int
endOffset – int
Deletes the text from
startOffset
toendOffset
.
- PySide2.QtGui.QAccessibleEditableTextInterface.insertText(offset, text)¶
- Parameters:
offset – int
text – str
Inserts
text
at positionoffset
.
- PySide2.QtGui.QAccessibleEditableTextInterface.replaceText(startOffset, endOffset, text)¶
- Parameters:
startOffset – int
endOffset – int
text – str
Removes the text from
startOffset
toendOffset
and instead insertstext
.
© 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.