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

TreeViewNode.Expanded Property

Gets or sets whether the node is expanded.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(false)]
public virtual bool Expanded { get; set; }

Property Value

Type Default Description
Boolean **false**

true if the node is expanded; false if the node is collapsed.

Remarks

Use the Expanded property to expand or collapse a node.

TreeView - Expanding and Collapsing Nodes

Note that changing the Expanded property in code doesn’t invoke the ASPxTreeView.ExpandedChanging and the ASPxTreeView.ExpandedChanged events.

To expand/collapse all nodes, use the following methods:

Server method Client method Describtion
ASPxTreeView.ExpandAll ASPxClientTreeView.ExpandAll Expands all nodes
ASPxTreeView.CollapseAll ASPxClientTreeView.CollapseAll Collapses all nodes
ASPxTreeView.ExpandToDepth None Expands all nodes to the specified depth

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 Expanded 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