QObject_set
Set a property value of an QObject handle (set).
📝Syntax
R = set(h, property_name, value)
📥Input Arguments
Parameter Description
h an QObject handle.
property_name a string: property name.
value a variable.
📤Output Arguments
Parameter Description
R user-settable properties and possible values for the object identified by h.
📄Description

This routine can be used to modify the value of a specified property from an QObject object.

💡Examples
h = errordlg()
h.visible = false; % or set(h, 'visible', false)
h.windowTitle = 'new title' % or set(h, 'windowTitle', 'new title')
h.visible = true;
    
🔗See Also
set
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub