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

In This Topic
    Rotate Event
    In This Topic
    Continue rotating
    Syntax
    'Declaration
     
    Public Event Rotate As EventHandler(Of GestureEventArgs)
    public event EventHandler<GestureEventArgs> Rotate
    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  
    Remarks
    Use the RotateAngle in the event argument to get the relative rotation angle
    See Also