ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearWinForms Class / SavePage Method
Handle of window to use as parent for dialog box.
Page to save.




In This Topic
    SavePage Method (ImGearWinForms)
    In This Topic
    Save a page, using a file save dialog to prompt the user for the format and destination.
    Syntax
    'Declaration
     
    Public Shared Function SavePage( _
       ByVal owner As IWin32Window, _
       ByVal page As ImGearPage _
    ) As Boolean
    'Usage
     
    Dim owner As IWin32Window
    Dim page As ImGearPage
    Dim value As Boolean
     
    value = ImGearWinForms.SavePage(owner, page)
    public static bool SavePage( 
       IWin32Window owner,
       ImGearPage page
    )
    public: static bool SavePage( 
       IWin32Window* owner,
       ImGearPage* page
    ) 
    public:
    static bool SavePage( 
       IWin32Window^ owner,
       ImGearPage^ page
    ) 

    Parameters

    owner
    Handle of window to use as parent for dialog box.
    page
    Page to save.

    Return Value

    True Page was saved successfully.
    False Page was not saved because user clicked Cancel in dialog box.
    See Also