Classes
(read only)
This property returns the list of DSS intrinsic classes (names of the classes).
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;
% Gets the names of all the classes included in OpenDSS
myClasses = DSSObject.Classes;