CtrlQueue
This interface can be used to gain access to the features and properties of the simulation control queue (CtrlQueue). Because it is embedded within the ActiveCircuit interface, requires the definition of this interface before getting access the to CtrlQueue interface.
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;
DSSCtrlQueue = DSSCircuit.CtrlQueue;