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