Skip to main content
All docs
V25.1
  • TreeViewControl.DeleteNode(TreeListNode, Boolean) Method

    Removes the specified node and optionally, all its children.

    Namespace: DevExpress.Xpf.Grid

    Assembly: DevExpress.Xpf.Grid.v25.1.dll

    NuGet Package: DevExpress.Wpf.Grid.Core

    Declaration

    public void DeleteNode(
        TreeListNode node,
        bool deleteChildren = true
    )

    Parameters

    Name Type Description
    node TreeListNode

    The node to remove.

    Optional Parameters

    Name Type Default Description
    deleteChildren Boolean True

    true to remove all child nodes; otherwise, false.

    Remarks

    If you set the deleteChildren parameter to false, the TreeViewControl adds child nodes of the deleted node to the collection of root nodes.

    See Also