Exports reports to Adobe Portable Document Format (PDF) files.
Namespace: MindFusion.Reporting.Wpf.Export
Assembly: MindFusion.Reporting.Wpf.PdfExport
SyntaxC#
Copy Code
|
|---|
public class PdfExporter |
Visual Basic
Copy Code
|
|---|
Public Class PdfExporter |
RemarksIn order to export to PDF, instantiate from this class and invoke the Export method supplying as argument the report to be exported. As is customary, the report must have been processed by a previous call to its Run method.
ExampleThe following example exports an existing report to PDF:
C#
Copy Code
|
|---|
PdfExporter pdf = new PdfExporter(); |
Visual Basic
Copy Code
|
|---|
Dim pdf As New PdfExporter() |
Inheritance HierarchySystem.Object![]()
MindFusion.Reporting.Wpf.Export.PdfExporter
See Also