QAccessibleValueChangeEvent#
The QAccessibleValueChangeEvent
describes a change in value for an accessible object. More…
Synopsis#
Functions#
Detailed Description#
It contains the new value.
This class is used with updateAccessibility()
.
- class PySide6.QtGui.QAccessibleValueChangeEvent(iface, val)#
PySide6.QtGui.QAccessibleValueChangeEvent(obj, val)
- Parameters
val – object
obj –
PySide6.QtCore.QObject
Constructs a new QAccessibleValueChangeEvent
for iface
. The event contains the new value val
.
Constructs a new QAccessibleValueChangeEvent
for object
. The event contains the new value
.
- PySide6.QtGui.QAccessibleValueChangeEvent.setValue(val)#
- Parameters
val – object
Sets the new value
for this event.
See also
- PySide6.QtGui.QAccessibleValueChangeEvent.value()#
- Return type
object
Returns the new value of the accessible object of this event.
See also