TreeView for WinForms | ComponentOne
C1.Win.Touch Namespace / TouchProcessor Class / MissedTap Event

In This Topic
    MissedTap Event (TouchProcessor)
    In This Topic
    Occurs if the user taps the control but the touch duration exceeded MaxTapDuration or the touch point was moved.
    Syntax
    'Declaration
     
    
    Public Event MissedTap As EventHandler(Of TouchEventArgs)
    public event EventHandler<TouchEventArgs> MissedTap
    Event Data

    The event handler receives an argument of type TouchEventArgs containing data related to this event. The following TouchEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the contact's X coordinate, in pixels.  
    Gets the contact's Y coordinate, in pixels.  
    See Also