class QAccessibleEditableTextInterface#

The QAccessibleEditableTextInterface class implements support for objects with editable text. More

Synopsis#

Virtual methods#

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 .

IAccessible2 Specification

abstract deleteText(startOffset, endOffset)#
Parameters:
  • startOffset – int

  • endOffset – int

Deletes the text from startOffset to endOffset.

abstract insertText(offset, text)#
Parameters:
  • offset – int

  • text – str

Inserts text at position offset.

abstract replaceText(startOffset, endOffset, text)#
Parameters:
  • startOffset – int

  • endOffset – int

  • text – str

Removes the text from startOffset to endOffset and instead inserts text.