

| Type | Description | |||
| Long | A long expression that indicates the number of visible nodes. |
The following sample displays the list of visible nodes:
With XMLGrid1
Dim i As Long
For i = 0 To .VisibleNodeCount - 1
Dim n As EXMLGRIDLibCtl.Node
Set n = .NodeByPosition(i)
Debug.Print n.Name
Next
End With