Installation manual
BASE STATION OBJECT
65
6
PROPERTY DIRECT
This property is reserved.
PROPERTY ENABLED
PURPOSE
Enables/disables the base station.
DESCRIPTION
This property enables or disables the base station. When the base station is
disabled, it enters a particular state (OFF state) and is not polled by the network
control thread.
This property is useful during the network data collection, since at polling start up all
base stations should be already enabled (Enable = TRUE).
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 SatObject as Sat
...
‘Set the base station to Off state
Set SatObject = RFNCCTL.Satellites.Satellite(1500)
SatObject.Enabled = False
...