Node property
The
Node
property returns or sets the machine name or IP address of the specific computer running the FactoryTalk Batch
Server application instance with which the control communicates. The default value is empty (a zero-length string). The Node
property applies to the BatchRemote
object.Syntax | object.Node [= text] | |
---|---|---|
The Node property syntax has these parts: | ||
Part | Description | |
object | Object expression that evaluates to a previously defined BatchRemote.RemoteSupport object. | |
text | String expression specifying the IP address or specific computer name. |
This code example is
Visual Basic
6 syntax.Example: | Dimension a remote FactoryTalk Batch Server object: Dim svr As New BatchRemote.RemoteSupport Set the Node name: svr.Node = "STATION_1" |
Provide Feedback