ClassPositionChangedEventArgs
Class
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.Windows.Diagrams.Core.dll
Syntax:
cs-api-definition
public class PositionChangedEventArgs : DiagramItemsEventArgs
Inheritance: objectEventArgsDiagramItemsEventArgsPositionChangedEventArgs
Derived Classes:
Inherited Members
Constructors
PositionChangedEventArgs(Point, Point, IEnumerable<IDiagramItem>)
Initializes a new instance of the PositionChangedEventArgs class.
Declaration
cs-api-definition
public PositionChangedEventArgs(Point oldPosition, Point newPosition, IEnumerable<IDiagramItem> items)
Parameters
oldPosition
Point
The old position.
newPosition
Point
The new position.
items
The items.
Properties
NewPosition
Gets the new value.
Declaration
cs-api-definition
public Point NewPosition { get; }
Property Value
Point
OldPosition
Gets the old value.
Declaration
cs-api-definition
public Point OldPosition { get; }
Property Value
Point