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

DiagramControl.ApplyTreeLayout(IEnumerable<DiagramItem>, Nullable<SplitToConnectedComponentsMode>) Method

Applies the tree layout algorithm.

Namespace: DevExpress.XtraDiagram

Assembly: DevExpress.XtraDiagram.v19.1.dll

Declaration

public void ApplyTreeLayout(
    IEnumerable<DiagramItem> items = null,
    SplitToConnectedComponentsMode? splitMode = default(SplitToConnectedComponentsMode? )
)

Optional Parameters

Name Type Default Description
items IEnumerable<DiagramItem> *null*

A collection of items to which to apply the algorithm.

splitMode Nullable<SplitToConnectedComponentsMode> *null*

A SplitToConnectedComponentsMode enumeration value specifying whether to apply the layout algorithm only to items that are connected to at least one other item.

Remarks

The items collection should include connectors.

To learn more, see Automatic Layout.

See Also