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