C1TappedEventArgs Constructor
In This Topic
Initializes a new instance of the
C1TappedEventArgs class.
Syntax
'Declaration
Public Function New( _
ByVal As Android.Views.View, _
ByVal As Android.Views.View.TouchEventArgs, _
Optional ByVal As Boolean, _
Optional ByVal As Boolean _
)
'Usage
Dim element As Android.Views.View
Dim originalArgs As Android.Views.View.TouchEventArgs
Dim isRightTapped As Boolean
Dim isDown As Boolean
Dim instance As New C1TappedEventArgs(element, originalArgs, isRightTapped, isDown)
public C1TappedEventArgs(
Android.Views.View ,
Android.Views.View.TouchEventArgs ,
bool ,
bool
)
Parameters
- element
- Element where the gesture is being listened.
- originalArgs
- The Android.Views.View.TouchEventArgs instance containing the event data.
- isRightTapped
- if set to
true
the event was performed with the right button of the mouse. - isDown
- if set to
true
the event was performed with the mouse down.
See Also