PanUpdatedEventArgs Constructors

Definition

Overloads

PanUpdatedEventArgs(GestureStatus, Int32)

Creates a new PanUpdatedEventArgs with the specified values.

PanUpdatedEventArgs(GestureStatus, Int32, Double, Double)

Creates a new PanUpdatedEventArgs with the specified values.

PanUpdatedEventArgs(GestureStatus, Int32)

Creates a new PanUpdatedEventArgs with the specified values.

public PanUpdatedEventArgs (Xamarin.Forms.GestureStatus type, int gestureId);
new Xamarin.Forms.PanUpdatedEventArgs : Xamarin.Forms.GestureStatus * int -> Xamarin.Forms.PanUpdatedEventArgs

Parameters

type
GestureStatus

Whether the gesture just began, is continuing, was completed, or is canceled.

gestureId
System.Int32

An identifier for the gesture.

Applies to

PanUpdatedEventArgs(GestureStatus, Int32, Double, Double)

Creates a new PanUpdatedEventArgs with the specified values.

public PanUpdatedEventArgs (Xamarin.Forms.GestureStatus type, int gestureId, double totalx, double totaly);
new Xamarin.Forms.PanUpdatedEventArgs : Xamarin.Forms.GestureStatus * int * double * double -> Xamarin.Forms.PanUpdatedEventArgs

Parameters

type
GestureStatus

Whether the gesture just began, is continuing, was completed, or is canceled.

gestureId
System.Int32

An identifier for the gesture.

totalx
System.Double

The total change in the X direction since the beginning of the gesture.

totaly
System.Double

The total change in the Y direction since the beginning of the gesture.

Applies to