C1TappedEventArgs Constructor
In This Topic
Initializes a new instance of the
C1TappedEventArgs class.
Syntax
'Declaration
Public Function New( _
ByVal As UIKit.UIView, _
ByVal As UIKit.UIGestureRecognizer, _
Optional ByVal As Boolean, _
Optional ByVal As Boolean _
)
'Usage
Dim element As UIKit.UIView
Dim originalArgs As UIKit.UIGestureRecognizer
Dim isRightTapped As Boolean
Dim isDown As Boolean
Dim instance As New C1TappedEventArgs(element, originalArgs, isRightTapped, isDown)
public C1TappedEventArgs(
UIKit.UIView ,
UIKit.UIGestureRecognizer ,
bool ,
bool
)
Parameters
- element
- Element where the gesture is being listened.
- originalArgs
- The UIKit.UIGestureRecognizer 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