The QAccessibleTextRemoveEvent class notifies of text being deleted. More...
Header: | #include <QAccessibleTextRemoveEvent> |
CMake: | find_package(Qt6 COMPONENTS Gui REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Gui) |
qmake: | QT += gui |
Inherits: | QAccessibleTextCursorEvent |
QAccessibleTextRemoveEvent(QAccessibleInterface *iface, int position, const QString &text) | |
QAccessibleTextRemoveEvent(QObject *object, int position, const QString &text) | |
int | changePosition() const |
QString | textRemoved() const |
This class is used with QAccessible::updateAccessibility().
Constructs a new QAccessibleTextRemoveEvent event for iface. The text has been removed at position. By default it is assumed that the cursor has moved to position. If that is not the case, one needs to manually set it with QAccessibleTextCursorEvent::setCursorPosition() for this event.
Constructs a new QAccessibleTextRemoveEvent event for object. The text has been removed at position. By default it is assumed that the cursor has moved to position. If that is not the case, one needs to manually set it with QAccessibleTextCursorEvent::setCursorPosition() for this event.
Returns the position where the text was removed.
Returns the text that has been removed.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qaccessibletextremoveevent.html