appendNode
Short Summary
This method adds the given node to the end of the node list.
Example
Given a list that looks like this: (Head->) A B C (\<- End),
calling append(D) on this list will place the D at the and,
making it the new End: (Head->) A B C D(\<- End)
Example
station.nodes.appendNode( dispensingRobot );
- Return type: CNM_ReturnTypes.SingleExecutionResult
Parameters
| Name | Type | Comment | Kind |
|---|---|---|---|
| node | INodeApi | the node that should be appended | input |
Code
Declaration
METHOD appendNode : CNM_ReturnTypes.SingleExecutionResult
VAR_INPUT
(*the node that should be appended*)
node :INodeApi;
END_VAR