NextSib property: Node class
Description
This property returns a reference to the next sibling node. If there isn’t a next sibling node, Null is returned.
This property is read-only.
Example
While &MYNODE.HasNextSib
&MYNODE = &MYNODE.NextSib;
/* do some processing */
End-While;