This interface allows to gain direct access to the active properties of the active element without having to go through the text interface or specific interfaces. It is not exposed directly and can be accessed through the ActiveDSSElement interface. It applies only for a single property at the time.


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;