Simulates a complete pinch zoom gesture sequence.
public void PinchZoom(Interactive target, Point origin, double startScale, double endScale, int steps = 10, double startAngle = 0, double endAngle = 0)
The target control to receive the event.
Center point of the pinch.
Starting scale (typically 1.0).
Ending scale.
Number of intermediate steps (must be greater than 0).
Starting angle in radians. For degrees, use PinchRotate(Interactive, Point, Double, Double, Int32) instead.
Ending angle in radians. For degrees, use PinchRotate(Interactive, Point, Double, Double, Int32) instead.
Note: Angle parameters are in radians (e.g., Math.PI for 180°). For degrees, use PinchRotate(Interactive, Point, Double, Double, Int32) which accepts degrees.