

| Type | Description | |||
| Node | A Node object that indicates the next visible node. |
The following sample displays the visible nodes in the control:
Private Sub vis(ByVal x As EXMLGRIDLibCtl.XMLGrid)
Dim c As EXMLGRIDLibCtl.Node
Set c = x.FirstVisibleNode
While Not c Is Nothing
Debug.Print c.Name
Set c = c.NextVisibleNode
Wend
End Sub