Spread WPF 18
GrapeCity.Wpf.SpreadSheet.Dialogs Namespace / IDialog Interface / Show Method
The x-coorinate of the newly window. Use System.Double.NaN to align at the center of owner window.
The y-coorinate of the newly window. Use System.Double.NaN to align at the middle of owner window.


In This Topic
    Show Method (IDialog)
    In This Topic
    Opens a window and returns without waiting for the newly opened window to close.
    Syntax
    'Declaration
     
    Sub Show( _
       Optional ByVal x As Double, _
       Optional ByVal y As Double _
    ) 
    'Usage
     
    Dim instance As IDialog
    Dim x As Double
    Dim y As Double
     
    instance.Show(x, y)
    void Show( 
       double x,
       double y
    )

    Parameters

    x
    The x-coorinate of the newly window. Use System.Double.NaN to align at the center of owner window.
    y
    The y-coorinate of the newly window. Use System.Double.NaN to align at the middle of owner window.
    See Also