Installation manual

DEVICE OBJECT
81
7
7 DEVICE OBJECT
7.1 PROPERTIES
PROPERTY BUFFERSIZE
This property is reserved.
PROPERTY DEVID
PURPOSE
Gets or sets the device ID.
DESCRIPTION
This property gets or sets the device ID.
IDL
[propget, id(1), helpstring("property DevID")] HRESULT DevID([out, retval] short *pVal);
[propput, id(1), helpstring("property DevID")] HRESULT DevID([in] short newVal);
DATA TYPE
SHORT
POSSIBLE VALUES
Greater than 1
EXAMPLE
...
Dim DevObject as Device
Set DevObject = RFNCCTL.Devices.Add(1500)
...
‘ Change the Device ID
DevObject.DevID = 1501
...