TouchToolKit for WinForms | ComponentOne
C1.Win.TouchToolKit Namespace / C1Zoom Class / ShowPanWindow Method / ShowPanWindow(Point) Method
The location of pan window.
Example

In This Topic
    ShowPanWindow(Point) Method
    In This Topic
    Shows the pan window with the specified location.
    Syntax
    'Declaration
     
    
    Public Overloads Function ShowPanWindow( _
       ByVal location As Point _
    ) As Form
    public Form ShowPanWindow( 
       Point location
    )

    Parameters

    location
    The location 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.

    Pan window's System.Windows.Forms.Form.StartPosition is System.Windows.Forms.FormStartPosition.Manual 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