Skip to main content
A newer version of this page is available. .
Tab

TreeViewNode.Parent Property

Gets the immediate parent node to which the current node belongs.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public TreeViewNode Parent { get; }

Property Value

Type Description
TreeViewNode

A TreeViewNode object representing the node’s immediate parent.

Remarks

Use the Parent property to identify and access the immediate parent node which owns the current node.

Example

The sample code below represents an ASPxTreeView.ExpandedChanging event handler. The event handler prevents collapsing nodes if it has selected children in any generation.

using DevExpress.Web.ASPxTreeView;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void ASPxTreeView1_ExpandedChanging(object source, DevExpress.Web.ASPxTreeView.TreeViewNodeCancelEventArgs e) {
        if ((e.Node.Expanded) && (ASPxTreeView1.SelectedNode != null)) {
            TreeViewNode  node = ASPxTreeView1.SelectedNode.Parent;
            while (node != null) {
                if (e.Node == node) {
                    e.Cancel = true;
                    break;
                }
                node = node.Parent;
            }
        }
    }
}

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Parent property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also