Close
(method)
This method closes (hides) 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;
% Shows the progress form
DSSProgress.Show();
% Sets the caption of the progress form
DSSProgress.Caption = 'My caption';
% Sets the progress pct
DSSProgress.PctProgress = 50;
% Closes the progress form
DSSProgress.Close();