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

PrintToolBase.Print(String) Method

Prints the current document on the specified printer.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v20.2.Core.dll

NuGet Packages: DevExpress.Printing.Core, DevExpress.WindowsDesktop.Printing.Core

Declaration

public void Print(
    string printerName
)

Parameters

Name Type Description
printerName String

A String representing the name of the printer on which the current document should be printed.

Remarks

This method sends a report assigned to the PrintToolBase to the specified printer.

The document to be printed is accessible via the PrintingSystemBase.Document property of the PrintToolBase.PrintingSystem. Note that you need to call the XtraReport.CreateDocument method to generate a document prior to calling the Print method.

Note

If a printer with the specified name isn’t found, this method throws an InvalidPrinterException.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Print(String) 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