Search
FlowChart.RecursiveExpand Property
See Also
 



Gets or sets a value indicating whether tree branches should be expanded recursively when the "+" button is pressed.

 Syntax

VB6  Copy Code

Public Property Get RecursiveExpand() As Boolean
Public Property Let RecursiveExpand( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_RecursiveExpand ()
void put_RecursiveExpand (
    bool value
)

 Property Value

A boolean value. The default is false.

 Remarks

When using FlowChartX to display a tree structure you can expand/collapse branches of the tree using the Expand and Collapse methods. When expanding the hierarchy starting from a specified box, it is possible to either expand the first level of descendants, or to expand recursively the whole sub-tree. The desired expand behavior can be specified by the RecursiveExpand property.

 See Also