Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot Namespace / ViewportLayout Class / MultiTouchDown Event

In This Topic
    MultiTouchDown Event
    In This Topic
    Occurs when a multitouch surface is pressed.
    Syntax
    'Declaration
     
    Public Event MultiTouchDown As MultiTouchEventHandler
    public event MultiTouchEventHandler MultiTouchDown
    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
    touch event time  
    the size of the contact area in pixels  
    A set of bit flags that specify various aspects of touch point press, release, and motion.  
    A touch point identifier that distinguishes a particular touch input  
    Is Primary Contact (The first touch sequence)  
    Specifies that the corresponding touch point was established through a new contact  
    Specifies that a touch point is in range  
    Specifies that movement occurred  
    specifies that this input was not coalesced.  
    The touch event came from the user's palm  
    Specifies that the touch point is associated with a pen contact  
    Specifies that a touch point was removed  
    Touch client coordinate in pixels  
    mask which fields in the structure are valid  
    touch event time from system up  
    See Also