Renders the report into an Html Stream.

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

Syntax

C#
public void RenderToStream(
	Stream stream,
	FileFormatEnum fmt,
	string idPrefix,
	string fileName
)
Visual Basic
Public Sub RenderToStream ( _
	stream As Stream, _
	fmt As FileFormatEnum, _
	idPrefix As String, _
	fileName As String _
)

Parameters

stream
Type: System.IO..::..Stream
Stream that will contain the report.
fmt
Type: C1.C1Report..::..FileFormatEnum
Report format to insert into the output stream.
idPrefix
Type: System..::..String
Unique ID used to differentiate multiple reports stored in the same stream.
fileName
Type: System..::..String
Base file name used to build temporary image files.

Remarks

This method is used by the C1WebReport control to generate Html reports in ASP.NET pages.

See Also