Class PinchEventArgs
public class PinchEventArgs : RoutedEventArgs
- Inheritance
-
PinchEventArgs
- Inherited Members
Constructors
PinchEventArgs(double, Point)
public PinchEventArgs(double scale, Point scaleOrigin)
Parameters
PinchEventArgs(double, Point, double, double)
public PinchEventArgs(double scale, Point scaleOrigin, double angle, double angleDelta)
Parameters
Properties
Angle
Gets the angle of the pinch gesture, in degrees.
public double Angle { get; }
Property Value
Remarks
A pinch gesture is the movement of two pressed points closer together. This property is the measured angle of the line between those two points. Remember zero degrees is a line pointing up.
AngleDelta
Gets the difference from the previous and current pinch angle.
public double AngleDelta { get; }
Property Value
Remarks
The AngleDelta value includes the sign of rotation. Positive for clockwise, negative counterclockwise.
Scale
public double Scale { get; }
Property Value
ScaleOrigin
public Point ScaleOrigin { get; }