Exports reports to HTML files.
Namespace: MindFusion.Reporting.Wpf.Export
Assembly: MindFusion.Reporting.Wpf.HtmlExport
SyntaxC#
Copy Code
|
|---|
public class HtmlExporter |
Visual Basic
Copy Code
|
|---|
Public Class HtmlExporter |
RemarksIn 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.
ExampleThe following example exports an existing report to HTML:
C#
Copy Code
|
|---|
HtmlExporter exporter = new HtmlExporter(); |
Visual Basic
Copy Code
|
|---|
Dim exporter As New HtmlExporter() |
Inheritance HierarchySystem.Object![]()
MindFusion.Reporting.Wpf.Export.HtmlExporter
See Also