QObject_undefine(h, property_name)
| Paramètre | Description |
|---|---|
| h | an QObject handle. |
| property_name | a string : dynamic property name. |
| Paramètre | Description |
|---|---|
| R | a string: method signature. |
Supprime une propriété dynamique d'une poignée (handle) QObject.
h = errordlg()
set(h, 'myProp', 33)
h
get(h, 'myProp')
QObject_undefine(h, 'myProp')
get(h, 'myProp')
| Version | Description |
|---|---|
| 1.0.0 | version initiale |