Search
VirtualizingDiagram.ResolveNodePosition Property
See Also
 





A delegate called to determine the position of a node within the diagram.

Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf

 Syntax

C#  Copy Code

public ResolveNodePosition ResolveNodePosition { get; set; }

Visual Basic  Copy Code

Public Property ResolveNodePosition As ResolveNodePosition

 Property Value

A ResolveNodePosition delegate method.

 Remarks

By default, VirtualizingDiagram determines the position of a data item by inspecting its X, Y, Width and Height properties through reflection. By assigning a callback to the ResolveNodePosition property, you can place items whose position properties are named differently or whose position is stored elsewhere.

 See Also