Represents an object, which can be used as a target of a report rendering operation. An instance of this class is supplied to the RenderPage or RenderAllPages methodReportLayout class.
Namespace: MindFusion.Reporting.Wpf
Assembly: MindFusion.Reporting.Wpf
SyntaxC#
Copy Code
|
|---|
public interface IRenderTarget |
Visual Basic
Copy Code
|
|---|
Public Interface IRenderTarget |
RemarksThis interface provides an abstraction between the report and the output format. The report can be exported to various formats using different implementations of this interface. FixedDocumentRenderTarget class provides rendering of a report to a WPF FixedDocument.
ExampleThe following example illustrates how to render a report to a FixedDocument. The report is identified by the report variable and is expected to be initialized and run already.
C#
Copy Code
|
|---|
ReportLayout layout = report.Layout( |
Visual Basic
Copy Code
|
|---|
Dim layout = report.Layout( _ |
Inheritors
See Also