Class PositionChangedEventArgs
Inherited Members
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public class PositionChangedEventArgs : DiagramItemsEventArgs
Constructors
PositionChangedEventArgs(Point, Point, IEnumerable<IDiagramItem>)
Initializes a new instance of the PositionChangedEventArgs class.
Declaration
public PositionChangedEventArgs(Point oldPosition, Point newPosition, IEnumerable<IDiagramItem> items)
Parameters
System.Windows.Point
oldPosition
The old position. |
System.Windows.Point
newPosition
The new position. |
System.Collections.Generic.IEnumerable<IDiagramItem>
items
The items. |
Properties
NewPosition
Gets the new value.
Declaration
public Point NewPosition { get; }
Property Value
System.Windows.Point
|
OldPosition
Gets the old value.
Declaration
public Point OldPosition { get; }
Property Value
System.Windows.Point
|