TouchToolKit for WinForms | ComponentOne
C1.Win.TouchToolKit Namespace / C1Zoom Class / ManipulationStarting Event
Example

In This Topic
    ManipulationStarting Event (C1Zoom)
    In This Topic
    Occurs when the manipulation processor is first created.
    Syntax
    'Declaration
     
    
    Public Event ManipulationStarting As EventHandler(Of ZoomManipulationStartingEventArgs)
    public event EventHandler<ZoomManipulationStartingEventArgs> ManipulationStarting
    Event Data

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

    PropertyDescription
    Gets or sets which types of manipulations are possible.  
    Gets the point from which the manipulation originated.  
    Gets a reference to the control that raised the event.  
    Remarks

    This event is a routed event. The C1Zoom must have a ManipulationModes other than ManipulationModes.None to be a manipulation event source.

    Example

    The following code example shows how to use this event.

    This code example is part of a larger example provided for the ZoomFactorChanged event.

    See Also