Next
(read only)
This property Iterate to the next recloser in the circuit. Returns zero if no more.
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';
DSSReclosers = DSSCircuit.Reclosers;
% Activates the first recloser on the list
i = DSSReclosers.First;
% Enumerates reclosers by name
myNames = [];
while i > 0,
myNames = [myNames, DSSReclosers.Name];
i = DSSReclosers.Next;
end;