Skip to main content

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 );

Parameters

NameTypeCommentKind
nodeINodeApithe node that should be appendedinput

Code

Declaration

METHOD appendNode : CNM_ReturnTypes.SingleExecutionResult
VAR_INPUT
(*the node that should be appended*)
node :INodeApi;
END_VAR