TouchToolKit for WinForms | ComponentOne
C1.Win.TouchToolKit Namespace / C1ApplicationZoom Class / C1ZoomDetached Event
Example

In This Topic
    C1ZoomDetached Event (C1ApplicationZoom)
    In This Topic
    Occurs when the C1Zoom component has detached from a System.Windows.Forms.Form.
    Syntax
    'Declaration
     
    
    Public Event C1ZoomDetached As EventHandler(Of C1ZoomDetachedEventArgs)
    public event EventHandler<C1ZoomDetachedEventArgs> C1ZoomDetached
    Event Data

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

    PropertyDescription
    Gets the System.Windows.Forms.Form that has been detached by C1Zoom component.  
    Gets the C1Zoom component that has detached to the Form.  
    Example

    The following code example shows how to use this event.

    This code example is part of a larger example provided for the C1ApplicationZoom class.

    See Also