PySide6.QtCore.QDynamicPropertyChangeEvent¶
- class QDynamicPropertyChangeEvent¶
- The - QDynamicPropertyChangeEventclass contains event parameters for dynamic property change events. More…- 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 - Detailed Description¶- Dynamic property change events are sent to objects when properties are dynamically added, changed or removed using - setProperty().- __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