Xamarin.iOS Documentation | ComponentOne
C1.iOS.Core Assembly / C1.iOS.Core Namespace / C1InputEventArgs Class / C1InputEventArgs Constructor / C1InputEventArgs Constructor(UIView,UIGestureRecognizer,C1PointerDeviceType)
Element where the gesture is being listened.
The OriginalEventArgs instance containing the event data.
Type of the pointer.


In This Topic
    C1InputEventArgs Constructor(UIView,UIGestureRecognizer,C1PointerDeviceType)
    In This Topic
    Initializes a new instance of the C1InputEventArgs class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal element As UIKit.UIView, _
       ByVal originalArgs As UIKit.UIGestureRecognizer, _
       ByVal pointerType As C1PointerDeviceType _
    )
    'Usage
     
    
    Dim element As UIKit.UIView
    Dim originalArgs As UIKit.UIGestureRecognizer
    Dim pointerType As C1PointerDeviceType
     
    Dim instance As New C1InputEventArgs(element, originalArgs, pointerType)
    public C1InputEventArgs( 
       UIKit.UIView element,
       UIKit.UIGestureRecognizer originalArgs,
       C1PointerDeviceType pointerType
    )

    Parameters

    element
    Element where the gesture is being listened.
    originalArgs
    The OriginalEventArgs instance containing the event data.
    pointerType
    Type of the pointer.
    See Also