PdfDocumentProcessor.Print(PdfPrinterSettings) Method
Prints the document with custom printer settings.
Namespace: DevExpress.Pdf
Assembly: DevExpress.Docs.v24.2.dll
NuGet Package: DevExpress.Document.Processor
#Declaration
public void Print(
PdfPrinterSettings printerSettings
)
#Parameters
Name | Type | Description |
---|---|---|
printer |
Pdf |
An object providing printer settings. |
#Remarks
Use the PdfPrinterSettings object to specify custom printer settings (orientation, scale, dpi, etc.). Use the PdfPrinterSettings.Settings property to access .NET print options.
Note
The Pdf
#Example
The code example below prints a document with custom printer settings.
using DevExpress.Pdf;
// Create a Pdf Document Processor instance
// and load a PDF file
PdfDocumentProcessor documentProcessor = new PdfDocumentProcessor();
documentProcessor.LoadDocument(@"..\..\Demo.pdf");
// Declare printer settings.
PdfPrinterSettings pdfPrinterSettings = new PdfPrinterSettings();
// Specify printer settings.
pdfPrinterSettings.PageOrientation = PdfPrintPageOrientation.Portrait;
pdfPrinterSettings.PageNumbers = new int[] { 1, 3, 4, 5 };
// Specify the custom scale number
pdfPrinterSettings.ScaleMode = PdfPrintScaleMode.CustomScale;
pdfPrinterSettings.Scale = 90;
// Specify .NET printer settings
PrinterSettings settings = pdfPrinterSettings.Settings;
settings.Duplex = Duplex.Vertical;
settings.Copies = 3;
// Print the document
documentProcessor.Print(pdfPrinterSettings);
#Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the Print(PdfPrinterSettings) 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.