class QAccessibleValueChangeEvent#

The QAccessibleValueChangeEvent describes a change in value for an accessible object. More

Inheritance diagram of PySide6.QtGui.QAccessibleValueChangeEvent

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#

It contains the new value.

This class is used with updateAccessibility() .

__init__(iface, val)#
Parameters:

Constructs a new QAccessibleValueChangeEvent for iface. The event contains the new value val.

__init__(obj, val)
Parameters:

Constructs a new QAccessibleValueChangeEvent for object. The event contains the new value.

setValue(val)#
Parameters:

val – object

Sets the new value for this event.

See also

value()

value()#
Return type:

object

Returns the new value of the accessible object of this event.

See also

setValue()