Skip to main content
A newer version of this page is available. .

PrintTool.PrintDialog() Method

Runs the Print dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.XtraPrinting.v19.1.dll

Declaration

public bool? PrintDialog()

Returns

Type Description
Nullable<Boolean>

true if the user clicks OK in the dialog box; false if the user clicks Cancel; otherwise null (Nothing in Visual Basic).

Remarks

The following image illustrates the Print dialog that is invoked by this method and replaces the standard PrintDialog.

custom-print-dialog

If a document has not been created prior to calling the PrintDialog method, the PrintDialog internally calls the Link.CreateDocument method.

To obtain the document after it is generated, use the PrintingSystemBase.Document property of the PrintToolBase.PrintingSystem.

Note

Changing page settings in the Print Dialog does not recreate the current document and affects only the printing result.

Example

To make the PrintTool.PrintDialog method invoke the standard system Print dialog, add the following code to the application’s Program.cs unit (Program.vb in Visual Basic).

This will replace the DefaultPrintDialogRunner, returned by the PrintDialogRunner.Instance property, with a SystemPrintDialogRunner.

using DevExpress.XtraPrinting.Preview;
// ...

static void Main(string[] args) {
    PrintDialogRunner.Instance = new SystemPrintDialogRunner();
    // ...
}

The following code snippets (auto-collected from DevExpress Examples) contain references to the PrintDialog() method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also