QObject_undefine
Undefine a dynamic property of a QObject handle.
📝Syntax
QObject_undefine(h, property_name)
📥Input Arguments
Parameter Description
h an QObject handle.
property_name a string : dynamic property name.
📤Output Arguments
Parameter Description
R a string: method signature.
📄Description

Undefine a dynamic property of a QObject handle.

💡Examples
h = errordlg()
set(h, 'myProp', 33)
h
get(h, 'myProp')
QObject_undefine(h, 'myProp')
get(h, 'myProp')
🔗See Also
QObject_set (set)QObject_get (get)
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub