Search
Diagram.RecursiveExpand Property
See Also
 





Gets or sets value indicating how a tree is expanded.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool RecursiveExpand { get; set; }

Visual Basic  Copy Code

Public Property RecursiveExpand As Boolean

 Property Value

true if a tree is recursively expanded; otherwise, false. The default is false.

 Remarks

Use the property when representing tree structures, which hide some of their elements. When the property is set to true, clicking on a certain node in the tree, expands not only its descendants, but all descendants of the descendants, and so on, till the whole tree is expanded.

 See Also