CachedReportSourceBase.PrintingSystem Property
Provides access to the Printing System associated with the cached document.
Namespace: DevExpress.XtraPrinting.Caching
Assembly: DevExpress.Printing.v24.2.Core.dll
Declaration
Property Value
Type | Description |
---|---|
PrintingSystemBase | A PrintingSystemBase instance that provides print and export capabilities for the cached document. |
Remarks
The following code demonstrates how to use the PrinitngSystem object provided by this property to export the generated report document in code.
using DevExpress.XtraPrinting.Caching;
//...
var storage = new MemoryDocumentStorage();
var report = new MyReport();
var cachedReportSource = new CachedReportSource(report, storage);
cachedReportSource.CreateDocument();
cachedReportSource.PrintingSystem.ExportToPdf("PdfFileName");
See Also