Installation manual

STAR-LINK™
74
6
PROPERTY NEWSATID
PURPOSE
Indicates the new ID to be assigned to a base station.
DESCRIPTION
This property sets the new ID to assign to the base station. This ID will be active after
calling the SetConfiguration() method.
IDL
[propget, id(24), helpstring("property NewSatID")] HRESULT NewSatID([out, retval]
short *pVal);
[propput, id(24), helpstring("property NewSatID")] HRESULT NewSatID([in] short
newVal);
DATA TYPE
SHORT
POSSIBLE VALUES
0 .. 1999
EXAMPLE
...
Dim SatObject as Sat
Set SatObject = RFNCCTL.Satellites.Add(1500)
...
‘ Sets the Satellite ID
SatObject.NewSatID = 1505
SatObject.SetConfiguration
...