On this page

QDynamicPropertyChangeEvent Class

The QDynamicPropertyChangeEvent class contains event parameters for dynamic property change events. More...

Header: #include <QDynamicPropertyChangeEvent>
CMake: find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
qmake: QT += core
Inherits: QEvent

Public Functions

QDynamicPropertyChangeEvent(const QByteArray &name)
QByteArray propertyName() const

Protected Functions

QDynamicPropertyChangeEvent(QDynamicPropertyChangeEvent &&)
QDynamicPropertyChangeEvent &operator=(QDynamicPropertyChangeEvent &&)
QDynamicPropertyChangeEvent &operator=(const QDynamicPropertyChangeEvent &other)

Detailed Description

Dynamic property change events are sent to objects when properties are dynamically added, changed or removed using QObject::setProperty().

Member Function Documentation

[explicit] QDynamicPropertyChangeEvent::QDynamicPropertyChangeEvent(const QByteArray &name)

Constructs a dynamic property change event object with the property name set to name.

[protected delete] QDynamicPropertyChangeEvent::QDynamicPropertyChangeEvent(QDynamicPropertyChangeEvent &&)

Move-constructs an instance of QDynamicPropertyChangeEvent. This function is deleted.

QByteArray QDynamicPropertyChangeEvent::propertyName() const

Returns the name of the dynamic property that was added, changed or removed.

See also QObject::setProperty() and QObject::dynamicPropertyNames().

[protected delete] QDynamicPropertyChangeEvent &QDynamicPropertyChangeEvent::operator=(QDynamicPropertyChangeEvent &&)

Move-assigns other to this QDynamicPropertyChangeEvent instance. This function is deleted.

[noexcept protected default] QDynamicPropertyChangeEvent &QDynamicPropertyChangeEvent::operator=(const QDynamicPropertyChangeEvent &other)

Copy-assigns other to this QDynamicPropertyChangeEvent instance.

© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.