TouchToolKit for WinForms | ComponentOne
C1.Win.TouchToolKit Namespace / C1Zoom Class / ShowPanWindow Method / ShowPanWindow(FormStartPosition,Size) Method
The start position of pan window.
The size of pan window.
Example

In This Topic
    ShowPanWindow(FormStartPosition,Size) Method
    In This Topic
    Shows the pan window with the specified start position and size.
    Syntax
    'Declaration
     
    
    Public Overloads Function ShowPanWindow( _
       ByVal startPosition As FormStartPosition, _
       ByVal size As Size _
    ) As Form
    public Form ShowPanWindow( 
       FormStartPosition startPosition,
       Size size
    )

    Parameters

    startPosition
    The start position of pan window.
    size
    The size of pan window.

    Return Value

    A System.Windows.Forms.Form value that represents the pan window.
    Remarks

    Pan window will show only when the owner form is loaded, and when the owner form is closed, pan window will be closed too.

    If pan window has been shown to call this method will do nothing.

    Pan window will not move as the owner form move if it is showed by this method.

    Example

    The following code example shows how to use this method.

    This code example is part of a larger example provided for the ShowPanWindow method.

    See Also