Class PositionChangedRoutedEventArgs
Encapsulates information about position changed event.
Inherited Members
Namespace: Telerik.Windows.Controls.Diagrams
Assembly: Telerik.Windows.Controls.Diagrams.dll
Syntax
public class PositionChangedRoutedEventArgs : RadRoutedEventArgs
Constructors
PositionChangedRoutedEventArgs(RoutedEvent)
Initializes a new instance of the PositionChangedRoutedEventArgs class.
Declaration
public PositionChangedRoutedEventArgs(RoutedEvent routedEvent)
Parameters
RoutedEvent
routedEvent
The routed event. |
PositionChangedRoutedEventArgs(RoutedEvent, Point, Point)
Initializes a new instance of the PositionChangedRoutedEventArgs class.
Declaration
public PositionChangedRoutedEventArgs(RoutedEvent routedEvent, Point oldPosition, Point newPosition)
Parameters
RoutedEvent
routedEvent
The routed event. |
System.Windows.Point
oldPosition
The old zoom. |
System.Windows.Point
newPosition
The new zoom. |
Properties
NewPosition
Gets the new position.
Declaration
public Point NewPosition { get; }
Property Value
System.Windows.Point
|
OldPosition
Gets the old position.
Declaration
public Point OldPosition { get; }
Property Value
System.Windows.Point
|