ActiveDSSElement
This interface can be used to examine the properties of the active DSS object. This interface is embedded within the ActiveCircuit interface, requiring the definition of this interface before getting access the to ActiveDSSElement interface.
Example
% Create DSS object
DSSObject = actxserver('OpenDSSEngine.DSS')
if ~DSSObject.Start(0),
disp("Unable to start openDSS");
return
end;
DSSCircuit = DSSObject.ActiveCircuit;
DSSElement = DSSCircuit.ActiveDSSElement;