GdPicture.NET.14
GdPicture14.WPF Namespace / GdViewer Class / PrintDialog Method / PrintDialog(PrintSizeOption,Window) Method
A member of the PrintSizeOption enumeration. Sets up the automatic scalling of a printed document to fit the current paper size.
Represents the top-level window that will own the modal dialog box.
Example





In This Topic
PrintDialog(PrintSizeOption,Window) Method
In This Topic
Invokes the standard Windows Print dialog box, which allows you to select additional options or settings and then to print the document currently displayed in the GdViewer control. You can also adjust the size of printed pages according to your preference using this method for printing. At the same time, you can specify the top-level window that will own the modal dialog box.

During the print process, the BeforePrintPage and the AfterPrintPage events are raised just before and right after the single page is printed.

Syntax
'Declaration
 
Public Overloads Function PrintDialog( _
   ByVal PrintSizeMode As PrintSizeOption, _
   ByVal owner As Window _
) As GdPictureStatus
public GdPictureStatus PrintDialog( 
   PrintSizeOption PrintSizeMode,
   Window owner
)
public function PrintDialog( 
    PrintSizeMode: PrintSizeOption;
    owner: Window
): GdPictureStatus; 
public function PrintDialog( 
   PrintSizeMode : PrintSizeOption,
   owner : Window
) : GdPictureStatus;
public: GdPictureStatus PrintDialog( 
   PrintSizeOption PrintSizeMode,
   Window* owner
) 
public:
GdPictureStatus PrintDialog( 
   PrintSizeOption PrintSizeMode,
   Window^ owner
) 

Parameters

PrintSizeMode
A member of the PrintSizeOption enumeration. Sets up the automatic scalling of a printed document to fit the current paper size.
owner
Represents the top-level window that will own the modal dialog box.

Return Value

true if the method has been followed successfully, otherwise false. Please use the PrintGetStat method to determine the reason for the printing failure.
Remarks
It is recommend to use the GetStat method or the PrintGetStat method to identify the specific reason for the method's failure, if any.

Just to remind you that you can also utilize both the BeforePrintPage and the AfterPrintPage events during the print process using this method.

You also need to be aware that annotations and form fields included in the document are rendered by default using this method when printing.

Example
How to print the currently displayed document using the standard Windows Print dialog box so the document's pages are adjusted to the specified paper size automatically.
'We assume that the GdViewer1 control has been properly integrated.
If GdViewer1.DisplayFromFile("") = GdPictureStatus.OK Then
    If GdViewer1.PrintDialog(PrintSizeOption.PrintSizeOptionFit, Me) = GdPictureStatus.OK Then
        MessageBox.Show("The file has been printed successfully.", "GdViewer.PrintDialog")
    Else
        Dim message As String = "The file can't be printed." + vbCrLf + "Status: " + GdViewer1.GetStat().ToString()
        If GdViewer1.PrintGetStat() = GdPictureStatus.PrintingException Then message = message + "    Error: " + GdViewer1.PrintGetLastError()
        MessageBox.Show(message, "GdViewer.PrintDialog")
    End If
    GdViewer1.CloseDocument()
Else
    MessageBox.Show("The file can't be displayed. Status: " + GdViewer1.GetStat().ToString(), "GdViewer.PrintDialog")
End If
//We assume that the GdViewer1 control has been properly integrated.
if (GdViewer1.DisplayFromFile("") == GdPictureStatus.OK)
{
    if (GdViewer1.PrintDialog(PrintSizeOption.PrintSizeOptionFit, this) == GdPictureStatus.OK)
    {
        MessageBox.Show("The file has been printed successfully.", "GdViewer.PrintDialog");
    }
    else
    {
        string message = "The file can't be printed.\nStatus: " + GdViewer1.GetStat().ToString();
        if (GdViewer1.PrintGetStat() == GdPictureStatus.PrintingException)
            message = message + "    Error: " + GdViewer1.PrintGetLastError();
        MessageBox.Show(message, "GdViewer.PrintDialog");
    }
    GdViewer1.CloseDocument();
}
else
{
    MessageBox.Show("The file can't be displayed. Status: " + GdViewer1.GetStat().ToString(), "GdViewer.PrintDialog");
}
See Also