Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.MultiTouch Namespace / GestureHandler Class / PanBegin Event

In This Topic
    PanBegin Event
    In This Topic
    Start the pannin sequence
    Syntax
    'Declaration
     
    Public Event PanBegin As EventHandler(Of GestureEventArgs)
    public event EventHandler<GestureEventArgs> PanBegin
    Event Data

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

    PropertyDescription
    The calculated gesture center  
    the raw Gesture arguments  
    The windows gesture id  
    The first event of a gesture  
    The last event of a gesture  
    The gesture has triggered inertia  
    The first gesture in this gesture event sequence  
    The last gesture in this gesture event sequence  
    The gesture location translated into client area  
    The relative panning translation, used by the Pan event  
    The velocity vector of the pan gesture, can be used for custom inertia  
    The relative rotation angle, used by the Rotate event  
    The zoom factor, used by the Zoom event  
    See Also