Search
TreeLayout.PreserveOrder Property
See Also
 



Gets or sets a value indicating whether to keep the original geometric order of child nodes when arranging them under their parent.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_PreserveOrder ()
void put_PreserveOrder (
    bool value
)

 Property Value

true to preserve order of child nodes, otherwise false. The default value is false.

 Remarks

If this property is not set, the order of child nodes corresponds to the order of arrows within the parent's OutgoingArrows collection.

 See Also