Installation manual

BASE STATION OBJECT
73
6
PROPERTY SATID
PURPOSE
Gets the base station ID.
DESCRIPTION
This property gets and sets the base station ID. It is very important, since the network
data collection involves only the base stations having an ID.
IDL
[propget, id(1), helpstring("property SatID")] HRESULT SatID([out, retval] short *pVal);
[propput, id(1), helpstring("property SatID")] HRESULT SatID([in] short newVal);
DATA TYPE
SHORT
POSSIBLE VALUES
0 .. 1999
EXAMPLE
...
Dim SatObject as Sat
Dim satAddr as Integer
Set SatObject = RFNCCTL.Satellites.Add(1500)
...
‘ Get the Satellite ID
satAddr = SatObject.SatID
...