QObject_undefine(h, property_name)
| Parameter | Description |
|---|---|
| h | an QObject handle. |
| property_name | a string : dynamic property name. |
| Parameter | Description |
|---|---|
| R | a string: method signature. |
Undefine a dynamic property of a QObject handle.
h = errordlg()
set(h, 'myProp', 33)
h
get(h, 'myProp')
QObject_undefine(h, 'myProp')
get(h, 'myProp')
| Version | Description |
|---|---|
| 1.0.0 | initial version |