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

In This Topic
    ZoomEnd Event
    In This Topic
    Zoom End event
    Syntax
    'Declaration
     
    Public Event ZoomEnd As EventHandler(Of GestureEventArgs)
    public event EventHandler<GestureEventArgs> ZoomEnd
    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