Report.Render Method (String)

 

Processes the report and renders it in the specified format.

Namespace:   Microsoft.Reporting.WinForms
Assembly:  Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)

Syntax

public byte[] Render(
    string format
)
public:
array<unsigned char>^ Render(
    String^ format
)
member Render : 
        format:string -> byte[]
Public Function Render (
    format As String
) As Byte()

Parameters

  • format
    Type: System.String

    The format in which to render the report. This parameter maps to a rendering extension

    In local processing mode, supported extensions are Excel, PDF, Word, and Image. In remote processing mode, supported extensions depend on the extensions supported by the report server.

    You can access the list of available rendering extensions using the ListRenderingExtensions method in ServerReport or LocalReport, depending on the processing mode (see ProcessingMode).

Return Value

Type: System.Byte[]

A byte array of the report in the specified format.

See Also

Render Overload
Report Class
Microsoft.Reporting.WinForms Namespace

Return to top