MindFusion.Wpf Pack Programmer's Guide
HtmlExporter Class
Remarks See Also
 





Exports reports to HTML files.

Namespace: MindFusion.Reporting.Wpf.Export
Assembly: MindFusion.Reporting.Wpf.HtmlExport

 Syntax

C#  Copy Code

public class HtmlExporter

Visual Basic  Copy Code

Public Class HtmlExporter

 Remarks

In order to export to HTML, 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. For more information, check Exporting Reports.

 Example

The following example exports an existing report to HTML:

C#  Copy Code

HtmlExporter exporter = new HtmlExporter();
exporter.Export(report, "myreport.html", "");

Visual Basic  Copy Code

Dim exporter As New HtmlExporter()
exporter.Export(report, "myreport.html", "")

 Inheritance Hierarchy

System.Object
    MindFusion.Reporting.Wpf.Export.HtmlExporter

 See Also

HtmlExporter Members
MindFusion.Reporting.Wpf.Export Namespace