HasNextSib property: Node class

Description

This property returns True if the node has a next sibling, that is, if it isn’t the last node.

This property is read-only.

Example

While &MYNODE.HasNextSib    
   &MYNODE = &MYNODE.NextSib; 
   /* do some processing */ 
End-While;