Table of Contents

Class SKPanGestureEventArgs

Namespace
SkiaSharp.Extended
Assembly
SkiaSharp.Extended.dll

Provides data for a pan (single-finger drag) gesture event.

public class SKPanGestureEventArgs : EventArgs
Inheritance
SKPanGestureEventArgs
Inherited Members

Remarks

Pan events are raised continuously as a single touch moves beyond the TouchSlop threshold. Each event provides both the incremental Delta and the instantaneous Velocity.

PanDetected PanDetected

Constructors

SKPanGestureEventArgs(SKPoint, SKPoint, SKPoint)

Initializes a new instance of the SKPanGestureEventArgs class.

Properties

Delta

Gets the displacement from PreviousLocation to Location.

Handled

Gets or sets a value indicating whether the event has been handled.

Location

Gets the current touch location in view coordinates.

PreviousLocation

Gets the touch location from the previous pan event.

Velocity

Gets the current velocity of the touch movement.