(write only)


This property sets the percent progress to indicate [0..100].


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();