Installation manual

STAR-LINK™
48
4
PROPERTY ITEM
PURPOSE
Gets a base station object from the collection.
DESCRIPTION
This property retrieves a base station object from the collection. You must set an
index representing the offset in the array used to store all the base station objects
(the array is 0-based).
IDL
[propget, id(DISPID_VALUE)] HRESULT Item([in]long Index, [out, retval] VARIANT
*pVal)
INPUT PARAMETERS
Index : Long
The index of the array element used to store the collection of base stations.
DATA TYPE
Pointer to dispatch the object interface.
POSSIBLE VALUES
Read only property.
EXAMPLE
...
Dim SatellitesObject as Sats
Dim i as Long
...
Set SatellitesObjects = RFNCCTL.Satellites
For i = 0 To SatellitesObject.Count – 1
MsgBox “Satellite n. “ & CStr(i) & “ ID “& _
CStr(Satellites.Item(i).SatID)
Next i
...