Installation manual

STAR-LINK™
52
4
METHOD REMOVE
PURPOSE
Removes a base station object.
DESCRIPTION
This method removes a base station object from the collection. If the base station
does not exist, the function fails.
IDL
[id(2), helpstring("method Remove")] HRESULT Remove([in]VARIANT SatID);
INPUT PARAMETERS
SatID: Short
The ID of base station object to be removed.
OUTPUT VALUE
None
EXAMPLE
...
Dim SatObject as Sat
...
Set SatObject = RFNCCTL.Satellites.Add(1500)
SatObject.GetConfiguration
...
‘ Remove base station 1500 from the collection
RFNCCTL.Satellites.Remove(1500)
...