AllowForms
(read/write)
Default is TRUE. Use this property to set/get the status of the flag to allow forms and dialogs such as progress bars and/or warnings to be displayed during while using OpenDSS.
Example
% Create DSS object
DSSObject = actxserver('OpenDSSEngine.DSS')
if ~DSSObject.Start(0),
disp('Unable to start openDSS');
return
end;
DSSText = DSSObject.Text;
DSSCircuit = DSSObject.ActiveCircuit;
% Checks if form are allowed, if so, disable them
if DSSObject.AllowForms,
DSSObject.AllowForms = false;
end;