PanUpdatedEventArgs Constructors

Definition

Overloads

Name Description
PanUpdatedEventArgs(GestureStatus, Int32)

Initializes a new instance of the PanUpdatedEventArgs class.

PanUpdatedEventArgs(GestureStatus, Int32, Double, Double)

Initializes a new instance of the PanUpdatedEventArgs class with translation data.

PanUpdatedEventArgs(GestureStatus, Int32)

Source:
PanUpdatedEventArgs.cs
Source:
PanUpdatedEventArgs.cs
Source:
PanUpdatedEventArgs.cs
Source:
PanUpdatedEventArgs.cs

Initializes a new instance of the PanUpdatedEventArgs class.

public:
 PanUpdatedEventArgs(Microsoft::Maui::GestureStatus type, int gestureId);
public PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId);
new Microsoft.Maui.Controls.PanUpdatedEventArgs : Microsoft.Maui.GestureStatus * int -> Microsoft.Maui.Controls.PanUpdatedEventArgs
Public Sub New (type As GestureStatus, gestureId As Integer)

Parameters

type
GestureStatus

The gesture status.

gestureId
Int32

The unique identifier for this gesture.

Applies to

PanUpdatedEventArgs(GestureStatus, Int32, Double, Double)

Source:
PanUpdatedEventArgs.cs
Source:
PanUpdatedEventArgs.cs
Source:
PanUpdatedEventArgs.cs
Source:
PanUpdatedEventArgs.cs

Initializes a new instance of the PanUpdatedEventArgs class with translation data.

public:
 PanUpdatedEventArgs(Microsoft::Maui::GestureStatus type, int gestureId, double totalx, double totaly);
public PanUpdatedEventArgs(Microsoft.Maui.GestureStatus type, int gestureId, double totalx, double totaly);
new Microsoft.Maui.Controls.PanUpdatedEventArgs : Microsoft.Maui.GestureStatus * int * double * double -> Microsoft.Maui.Controls.PanUpdatedEventArgs
Public Sub New (type As GestureStatus, gestureId As Integer, totalx As Double, totaly As Double)

Parameters

type
GestureStatus

The gesture status.

gestureId
Int32

The unique identifier for this gesture.

totalx
Double

The total X translation since the gesture started.

totaly
Double

The total Y translation since the gesture started.

Applies to