Installation manual

STAR-LINK™
56
5
PROPERTY DEVICE
PURPOSE
Gets a device object from the collection.
DESCRIPTION
This property gets a device object from the collection. You must set the DevID of the
desired device.
IDL
[propget, id(4)] HRESULT Device([in]VARIANT DevID, [out, retval] IDevice **pVal);
INPUT PARAMETERS
SatID : Short
The ID of desired device object.
DATA TYPE
Pointer to dispatch the object interface.
POSSIBLE VALUES
Read only property
EXAMPLE
...
Dim DevicesObject as Devices
Dim DevObject as Device
...
Set DevicesObjects = RFNCCTL.Devices
DevicesObjects.Add(1500)
...
Set DevObject = DevicesObjects.Device(1500)
...