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


In This Topic
    C1InputEventArgs Constructor(UIView,UIGestureRecognizer)
    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 _
    )
    'Usage
     
    
    Dim element As UIKit.UIView
    Dim originalArgs As UIKit.UIGestureRecognizer
     
    Dim instance As New C1InputEventArgs(element, originalArgs)
    public C1InputEventArgs( 
       UIKit.UIView element,
       UIKit.UIGestureRecognizer originalArgs
    )

    Parameters

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