<< QObject_root | QML engine | QObject_undefine >> |
R = set(h, property_name, value) |
an QObject handle.
a string: property name.
a variable.
user-settable properties and possible values for the object identified by h.
This routine can be used to modify the value of a specified property from an QObject object.
h = errordlg()
h.visible = false; % or set(h, 'visible', false)
h.windowTitle = 'new title' % or set(h, 'windowTitle', 'new title')
h.visible = true;
set.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET