(read only)


This property returns the list of DSS user defined 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 user defined classes

myUClasses = DSSObject.UserClasses;