CachedReportSourceBase.PrintingSystem Property
In This Article
Provides access to the Printing System associated with the cached document.
Namespace: DevExpress.XtraPrinting.Caching
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
[Browsable(false)]
public PrintingSystemBase PrintingSystem { get; }
#Property Value
Type | Description |
---|---|
Printing |
A Printing |
#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