

| Type | Description | 
The sample adds several nodes to the control and prevents painting the control, while adding new nodes :
With XMLGrid1
    .BeginUpdate
        With .Nodes
            Dim i As Long
            For i = 1 To 100
                .Add "Child <b>" & i & "</b>"
            Next
        End With
    .EndUpdate
End With