Installation manual

STAR-LINK™
50
4
4.2 METHODS
METHOD ADD
PURPOSE
Adds a base station object.
DESCRIPTION
This method adds a base station object to the collection. You can add base stations
with their ID between 0 and 1999.
IDL
[id(1), helpstring("method Add")] HRESULT Add([in]VARIANT SatID, [out, retval] ISat
**pVal);
INPUT PARAMETERS
SatID: Short
The ID of the base station object to be added.
OUTPUT VALUE
Pointer to dispatch the interface of the object just added.
EXAMPLE
...
Dim SatObject as Sat
...
‘ Add base station 1500 to the collection
Set SatObject = RFNCCTL.Satellite.Add(1500)
SatObject.GetConfiguration
...