Encapsulates information about position changed event.
Definition
Namespace:Telerik.Windows.Controls.Diagrams
Assembly:Telerik.Windows.Controls.Diagrams.dll
Syntax:
C#
public class PositionChangedRoutedEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsPositionChangedRoutedEventArgs
Constructors
Initializes a new instance of the PositionChangedRoutedEventArgs class.
C#
public PositionChangedRoutedEventArgs(RoutedEvent routedEvent, Point oldPosition, Point newPosition)
The routed event.
oldPositionPointThe old zoom.
newPositionPointThe new zoom.
Initializes a new instance of the PositionChangedRoutedEventArgs class.
C#
public PositionChangedRoutedEventArgs(RoutedEvent routedEvent)
The routed event.
Properties
NewPosition
Point
Gets the new position.
C#
public Point NewPosition { get; }
OldPosition
Point
Gets the old position.
C#
public Point OldPosition { get; }