Caption
(write only)
This property sets the caption to appear on the bottom of the DSS Progress form.
Example
% Create DSS object
DSSObject = actxserver('OpenDSSEngine.DSS')
if ~DSSObject.Start(0),
disp('Unable to start openDSS');
return
end;
% Getting the DSSProgress interface
DSSProgress = DSSObject.DSSProgress;
% Sets the caption of the progress form
DSSProgress.Caption = 'My caption';