

| Type | Description | |||
| Nodes | A Nodes object that specifies the collection of child nodes. | 
The following sample adds few nodes to the control's nodes collection.
Private Sub Form_Load()
    With XMLGrid1
        .BeginUpdate
        
        With .Nodes
            With .Add("Root").Nodes
                .Add "Child 1", "text1"
                .Add "Child 2", "text2"
            End With
        End With
        .EndUpdate
    End With
End Sub