(read only)


This property returns an array of strings containing names of all buses in circuit (see AllNodeNames).


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 for all buses in the model

myBusNames = DSSCircuit.AllBusNames;