Search
LayoutSubgraph Delegate
See Also
 





Represents methods that are called by the layout algorithms in order to perform custom arrangement of a subgraph.

Namespace: MindFusion.Diagramming.Layout
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public delegate bool LayoutSubgraph (
    Diagram diagram,
    DiagramItemCollection items
)

Visual Basic  Copy Code

Public Delegate Function LayoutSubgraph( _
    diagram As Diagram, _
    items As DiagramItemCollection _
) As Boolean

 Parameters

diagram

The diagram being arranged.

items

The subset of items to arrange.

 Return Value

true if the items were arranged; otherwise, false.

 See Also