Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / ModelessForm Class / Show Method / Show(IWin32Window) Method
Any object that implements System.Windows.Forms.IWin32Window and represents the top-level window that will own this form.


In This Topic
    Show(IWin32Window) Method
    In This Topic
    Shows the form with the specified owner to the user.
    Syntax
    'Declaration
     
    
    Public Overloads Shadows Sub Show( _
       ByVal owner As IWin32Window _
    ) 
    'Usage
     
    
    Dim instance As ModelessForm
    Dim owner As IWin32Window
     
    instance.Show(owner)
    public new void Show( 
       IWin32Window owner
    )

    Parameters

    owner
    Any object that implements System.Windows.Forms.IWin32Window and represents the top-level window that will own this form.
    Exceptions
    ExceptionDescription
    The form specified in the owner parameter is the same as the form being shown.
    See Also