

| Type | Description | |||
| Node | A Node object that's the next sibling node. |
The following sample displays recursively all child nodes:
Private Sub scanRec(ByVal x As EXMLGRIDLibCtl.XMLGrid, ByVal n As EXMLGRIDLibCtl.Node)
Dim c As EXMLGRIDLibCtl.Node
Set c = n.FirstNode
While Not c Is Nothing
Debug.Print c.Name
scanRec x, c
Set c = c.NextNode
Wend
End Sub