Next
(read only)
Advance the active Fuse element pointer to the next fuse. Returns 0 if no more fuses.
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';
DSSFuses = DSSCircuit.Fuses;
myFuseNames = [];
% swipes all the fuses to get their names (to make the example interesting)
i = DSSFuses.First;
while i > 0,
myFuseNames = [myFuseNames;DSSFuses.Name];
i = DSSFuses.Next;
end;