Set object or interface property to specified value
set(h,'pname',value)
set(h,'pname1',value1,'pname2',value2,...)
set(h,'pname',value)
sets
property pname
to value
.
set(h,'pname1',value1,'pname2',value2,...)
sets
each property pname1,pname2,...
to the corresponding value1,value2,...
.
For information on how MATLAB® converts workspace matrices to COM data types, see Handle COM Data in MATLAB.
COM functions are available on Microsoft® Windows® systems only.
Create an mwsamp
control and use set
to
change the Label
and Radius
properties
with a single statement.
f = figure('position',[100 200 200 200]); h = actxcontrol('mwsamp.mwsampctrl.1',[0 0 200 200],f); set(h,'Label','Click to fire event','Radius',40); Redraw(h)
Alternatively:
h.Label = 'Click to fire event';
h.Radius = 40;
Redraw(h)
addproperty
| deleteproperty
| get (COM)
| inspect
| isprop