PySide6.QtCore.QDynamicPropertyChangeEvent¶
- class QDynamicPropertyChangeEvent¶
The
QDynamicPropertyChangeEvent
class contains event parameters for dynamic property change events.Details
Dynamic property change events are sent to objects when properties are dynamically added, changed or removed using
setProperty()
.Synopsis¶
Methods¶
def
__init__()
def
propertyName()
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
- __init__(name)¶
- Parameters:
name –
QByteArray
Constructs a dynamic property change event object with the property name set to
name
.- __init__(name)
- Parameters:
name –
QDynamicPropertyChangeEvent
Constructs a dynamic property change event object with the property name set to
name
.- propertyName()¶
- Return type:
Returns the name of the dynamic property that was added, changed or removed.
See also