class QAccessibleTextInsertEvent#

The QAccessibleTextInsertEvent class notifies of text being inserted. More

Inheritance diagram of PySide6.QtGui.QAccessibleTextInsertEvent

Synopsis#

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#

This class is used with updateAccessibility() .

__init__(iface, position, text)#
Parameters:

Constructs a new QAccessibleTextInsertEvent event for iface. The text has been inserted at position.

__init__(obj, position, text)
Parameters:
  • objQObject

  • position – int

  • text – str

构造一个新的 QAccessibleTextInsertEvent 事件用于 object。文本已被插入到 position。默认情况下,假设光标已移动到选中区的末尾。如果不是这种情况,需要通过 setCursorPosition() 手动设置此事件的光标位置。

changePosition()#
返回类型:

int

返回文本插入的位置。

textInserted()#
返回类型:

str

返回已插入的文本。