Class DiagramLayoutEventArgs
The event argument supplied when the diagram layout event is raised.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.WinControls.RadDiagram.dll
Syntax
public class DiagramLayoutEventArgs : EventArgs
Constructors
DiagramLayoutEventArgs(LayoutType, Object, DiagramLayoutState, DiagramLayoutState)
Initializes a new instance of the Diagram
Declaration
public DiagramLayoutEventArgs(LayoutType type, object settings, DiagramLayoutState oldState, DiagramLayoutState newState)
Parameters
Layout The layout type to apply. |
System. The settings specific to the layout type. |
Diagram The old positions of the shapes. |
Diagram The new positions of the shapes. |
See Also
Properties
LayoutSettings
Gets the layout settings specific to the applied layout type.
Declaration
public object LayoutSettings { get; }
Property Value
System.
|
See Also
LayoutType
Gets the type of the layout algorithm that has been applied.
Declaration
public LayoutType LayoutType { get; }
Property Value
NewState
Gets state and the positions of shapes after the layout was applied.
Declaration
public DiagramLayoutState NewState { get; }
Property Value
OldState
Gets state and the positions of shapes before the layout was applied.
Declaration
public DiagramLayoutState OldState { get; }