Search
FlowChart.ExpandOnIncoming Property
See Also
 



Gets or sets a value indicating the direction of expand/collapse operations.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_ExpandOnIncoming ()
void put_ExpandOnIncoming (
    bool value
)

 Property Value

A boolean value. The default is false.

 Remarks

When using FlowChartX to display a tree structure you could expand/collapse branches of the tree using the Expand and Collapse methods. A box can be connected to other boxes through incoming and outgoing arrows. The ExpandOnIncoming property defines which boxes connected to another box are regarded as its children. If set to false, the expanding / collapsing is done in the direction of outgoing arrows (default setting); otherwise it is done in direction of the incoming arrows.

 See Also