Class ManipulationEventArgs
Event information about a manipulation gesture (translation, scaling and/or rotation by one or more contacts).
public sealed class ManipulationEventArgs : EventArgs
- Inheritance
-
objectManipulationEventArgs
- Inherited Members
- Extension Methods
Constructors
ManipulationEventArgs(PointF, ManipulationDelta, ManipulationDelta, ManipulationVelocity, bool)
Event information about a manipulation gesture (translation, scaling and/or rotation by one or more contacts).
public ManipulationEventArgs(PointF origin, ManipulationDelta delta, ManipulationDelta cumulative, ManipulationVelocity velocity, bool isInertial)
Parameters
originPointFThe center point of the manipulation in client coordinates.
deltaManipulationDeltaThe change since the last manipulation event.
cumulativeManipulationDeltaThe accumulated change since the start of the manipulation.
velocityManipulationVelocityThe current velocities of the manipulation.
isInertialboolIndicates that the manipulation is continuing under inertia after the user lifted all contacts.
Properties
Cumulative
The accumulated change since the start of the manipulation.
public ManipulationDelta Cumulative { get; }
Property Value
Delta
The change since the last manipulation event.
public ManipulationDelta Delta { get; }
Property Value
IsInertial
Indicates that the manipulation is continuing under inertia after the user lifted all contacts.
public bool IsInertial { get; }
Property Value
Origin
The center point of the manipulation in client coordinates.
public PointF Origin { get; }
Property Value
Velocity
The current velocities of the manipulation.
public ManipulationVelocity Velocity { get; }