(read only)


This property returns the description of the active property.


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;

% Compile a model        

DSSText.Command = 'Compile C:\myPath\myModel.dss';

DSSLines = DSSCircuit.Lines;

DSSElement = DSSCircuit.ActiveDSSElement;

% Sets The first line of the list as the active element

DSSLines.First;

% Displays the description of the property (phases)

disp(DSSElement.Properties('phases').Description);