Installation manual

STAR-LINK™
14
3
3 MAIN CONTROL OBJECT
An example written in Visual Basic is provided for all the properties and methods. In
these examples we assume the control is named RFNCCTL.
3.1 PROPERTIES
PROPERTY BAUDRATE
PURPOSE
Communication port baud rate.
DESCRIPTION
This property sets or gets the transmission speed to be used in the network.
IDL
[propget, id(1), helpstring("property BaudRate")] HRESULT BaudRate([out, retval]
BSTR *pVal);
[propput, id(1), helpstring("property BaudRate")] HRESULT BaudRate([in] BSTR
newVal);
DATA TYPE
String
POSSIBLE VALUES
The control accept only these values:
9600, 19200, 38400, 57600, 115200
The default value is 38400
EXAMPLE
...
Dim BaudRate as String
...
RFNCCTL.BaudRate = “38400”
...
BaudRate = RFNCCTL.BaudRate
...