TouchToolKit for WinForms | ComponentOne
C1.Win.TouchToolKit Namespace / C1Magnify Class / MagnifierShowing Event
Example

In This Topic
    MagnifierShowing Event (C1Magnify)
    In This Topic
    Occurs when the magnifier is opening.
    Syntax
    'Declaration
     
    
    Public Event MagnifierShowing As EventHandler(Of MagnifierShowingEventArgs)
    public event EventHandler<MagnifierShowingEventArgs> MagnifierShowing
    Event Data

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

    PropertyDescription
    Gets or sets a value indicating whether this GcMagnifier.MagnifierShowing event is canceled.  
    Gets a value indicating the position. (Inherited from C1.Win.TouchToolKit.MagnifierEventArgs)
    Gets the target object which magnifier shows on it. (Inherited from C1.Win.TouchToolKit.MagnifierEventArgs)
    Example

    The following code example shows how to use this event.

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

    See Also