Skip to main content

TreeListView.DeleteNode(TreeListNode, Boolean) Method

Removes the specified node and optionally, all its children.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public void DeleteNode(
    TreeListNode node,
    bool deleteChildren
)

Parameters

Name Type Description
node TreeListNode

A TreeListNode object that is the node to remove.

deleteChildren Boolean

true to remove all child nodes; otherwise, false.

Remarks

If the deleteChildren parameter is set to false, child nodes are moved to the Root.

See Also