Loads a report from an XML report definition in stream.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public void Load(
	Stream stream,
	string reportName
)
Visual Basic
Public Sub Load ( _
	stream As Stream, _
	reportName As String _
)

Parameters

stream
Type: System.IO..::..Stream
Stream containing XML report definition.
reportName
Type: System..::..String
Name of the report to retrieve from the file (case-insensitive).

Remarks

You can get a list of reports available in the file using the GetReportInfo(String) method.

See Also