The InteractiveOrganicLayouter is a special organic layouter that offers functionality to change the laid out graph while the layouter is running.

Namespace: yWorks.yFiles.Layout.Organic
Assembly: yWorks.yFilesNET.Algorithms (in yWorks.yFilesNET.Algorithms.dll) Version: 4.1.0.1 (4.1.0.1)

Syntax

C#
public class InteractiveOrganicLayouter : ILayouter
Visual Basic
Public Class InteractiveOrganicLayouter _
	Implements ILayouter

Remarks

The InteractiveOrganicLayouter is a special organic layouter that offers functionality to change the laid out graph while the layouter is running. This layouter may be used in a threaded environment. The read-access GetCenter(Node) does not have to be synchronized. The setters (e.g. SetCenter(Node, Double, Double) ) are scheduled and executed at a specific point within the life-cycle of the layouter. If a CopiedLayoutGraph is being laid out, structural changes (node and edge additions/removals) in the original graph are automatically scheduled and executed on the copy. The method AddStructureUpdate(EventHandler, EventArgs) may be used to schedule an event handler that is executed in a synchronized context and may safely update the structure of the graph.

Inheritance Hierarchy

System..::..Object
  yWorks.yFiles.Layout.Organic..::..InteractiveOrganicLayouter

See Also