Installation manual
STAR-LINK™
82
7
PROPERTY ENABLED
PURPOSE
Enables or disables the device.
DESCRIPTION
By setting off a device, it does not send any data event to the container. The network
thread keeps on receiving the device data, but it does not process it.
IDL
[propget, id(2), helpstring("property Enabled")] HRESULT Enabled([out, retval] BOOL
*pVal);
[propput, id(2), helpstring("property Enabled")] HRESULT Enabled([in] BOOL newVal);
DATA TYPE
BOOL
POSSIBLE VALUES
The control accepts only these values:
TRUE, FALSE
The default value is TRUE.
EXAMPLE
...
Dim DevObject as Device
...
‘ Set the device to Off state
Set DevObject = RFNCCTL.Devices.Device(1500)
DevObject.Enabled = False
...