Initialize control object from file
load(h,'filename')
load(h,'filename')
initializes
the COM object associated with the interface represented by the MATLAB® COM
object h
from file specified by filename
.
The file must have been created previously by serializing an instance
of the same control.
COM functions are available on Microsoft® Windows® systems only.
Note
The COM |
Create
an mwsamp
control and save its original state to
the file mwsample
.
f = figure('position',[100 200 200 200]); h = actxcontrol('mwsamp.mwsampctrl.2',[0 0 200 200],f); save(h,'mwsample')
h.Label = 'Circle';
h.Radius = 50;
Redraw(h)
load
function.load(h,'mwsample')
get(h)
ans = Label: 'Label' Radius: 20
actxcontrol
| actxserver
| delete
(COM)
| release
| save (COM)