idx
(read/write)
This property sets/gets active a PVSystem by index; 1..Count.
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';
% Handler for PVSystems interface
DSSPVSystems = DSSObject.PVSystems;
% Sets the first PV in the list active
i = DSSPVSystems.First;
% Activates the next PV on the list
DSSPVSystems.idx = i + 1;
% Gets the name of the active PV
myPV = DSSPVSystems.Name;