ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearWinForms Class / SelectRemoteFileToSave Method
Handle of window to use as parent for dialog box.
Window title to use for dialog box.
Page to be saved (but not actually saved in this method call).




In This Topic
    SelectRemoteFileToSave Method
    In This Topic
    Shows dialog box allowing the user to select a format and remote destination to save to.
    Syntax
    'Declaration
     
    Public Shared Function SelectRemoteFileToSave( _
       ByVal owner As IWin32Window, _
       ByVal title As String, _
       ByVal page As ImGearPage _
    ) As ImGearSavingSelection
    'Usage
     
    Dim owner As IWin32Window
    Dim title As String
    Dim page As ImGearPage
    Dim value As ImGearSavingSelection
     
    value = ImGearWinForms.SelectRemoteFileToSave(owner, title, page)
    public static ImGearSavingSelection SelectRemoteFileToSave( 
       IWin32Window owner,
       string title,
       ImGearPage page
    )
    public: static ImGearSavingSelection* SelectRemoteFileToSave( 
       IWin32Window* owner,
       string* title,
       ImGearPage* page
    ) 
    public:
    static ImGearSavingSelection^ SelectRemoteFileToSave( 
       IWin32Window^ owner,
       String^ title,
       ImGearPage^ page
    ) 

    Parameters

    owner
    Handle of window to use as parent for dialog box.
    title
    Window title to use for dialog box.
    page
    Page to be saved (but not actually saved in this method call).

    Return Value

    ImGearSavingSelection class object.
    Remarks
    Nothing is saved by this method. It only allows the user to make a selection and returns information about that selection.
    See Also