

| Type | Description | |||
| Long | A long expression that indicates the position of the node in the nodes collection. |
The following sample displays the list of visible nodes as they are displayed:
With XMLGrid1
Dim n As EXMLGRIDLibCtl.Node, i As Long
i = 0
Set n = .NodeByPosition(i)
While Not n Is Nothing
Debug.Print n.Name
i = i + 1
Set n = .NodeByPosition(i)
Wend
End With