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

In This Topic
    QueryStatus Event (TouchProcessor)
    In This Topic
    Occurs before the control starts processing input from touch device or pen at the given point.
    Syntax
    'Declaration
     
    
    Public Event QueryStatus As EventHandler(Of QueryStatusEventArgs)
    public event EventHandler<QueryStatusEventArgs> QueryStatus
    Event Data

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

    PropertyDescription
    Gets or sets whether the press and hold (right-click) gesture is supported.  
    Gets a value indicating if the event came from the stylus pen.  
    Gets the contact's X coordinate, in pixels. (Inherited from C1.Win.Touch.TouchEventArgs)
    Gets the contact's Y coordinate, in pixels. (Inherited from C1.Win.Touch.TouchEventArgs)
    See Also