

| Type | Description | |||
| Boolean | A boolean expression that indicates whether the node displays +/- signs even if the node contains no child nodes. | 
The following sample adds new child nodes to the node that's about to be expanded:
Private Sub XMLGrid1_BeforeExpandNode(ByVal Node As EXMLGRIDLibCtl.INode, Cancel As Variant)
    If Not Node.Expanded Then
        With Node.Nodes
            With .Add("New Node")
                .HasChilds = True
            End With
        End With
    End If
End Sub