ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearWinForms Class / SelectFileToLoadWithAdjust Method
Handle of window to use as parent for dialog box.
Window title to use for dialog box.
Allow selecting remote files.




In This Topic
    SelectFileToLoadWithAdjust Method
    In This Topic
    Shows dialog box allowing the user to select a local or remote file to load with adjustment dialgs for the image to be loaded.
    Syntax
    'Declaration
     
    Public Shared Function SelectFileToLoadWithAdjust( _
       ByVal owner As IWin32Window, _
       ByVal dialogTitle As String, _
       ByVal selectRemote As Boolean _
    ) As ImGearPage
    'Usage
     
    Dim owner As IWin32Window
    Dim dialogTitle As String
    Dim selectRemote As Boolean
    Dim value As ImGearPage
     
    value = ImGearWinForms.SelectFileToLoadWithAdjust(owner, dialogTitle, selectRemote)
    public static ImGearPage SelectFileToLoadWithAdjust( 
       IWin32Window owner,
       string dialogTitle,
       bool selectRemote
    )
    public: static ImGearPage* SelectFileToLoadWithAdjust( 
       IWin32Window* owner,
       string* dialogTitle,
       bool selectRemote
    ) 
    public:
    static ImGearPage^ SelectFileToLoadWithAdjust( 
       IWin32Window^ owner,
       String^ dialogTitle,
       bool selectRemote
    ) 

    Parameters

    owner
    Handle of window to use as parent for dialog box.
    dialogTitle
    Window title to use for dialog box.
    selectRemote
    Allow selecting remote files.

    Return Value

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