[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Export.Excel.Page.ExcelTransformationDevice.Render

Render Method

Render(IReport, StreamProvider)

Renders the IReport to the Excel file defined in streams with default settings.

Declaration
public void Render(IReport report, StreamProvider streamProvider)
Parameters
Type Name Description
IReport report

The report to render to Excel.

StreamProvider streamProvider

The stream used to create the Excel output file.

Implements

Render(IReport, StreamProvider, CancellationToken)

Renders the IReport to the Excel file defined in streams with default settings.

Declaration
public void Render(IReport report, StreamProvider streamProvider, CancellationToken cancel)
Parameters
Type Name Description
IReport report

The report to render to Excel.

StreamProvider streamProvider

The stream used to create the Excel output file.

CancellationToken cancel

The CancellationToken object that allows to interrupt rendering.

Render(IReport, StreamProvider, NameValueCollection)

Renders the IReport to the Excel file defined in streams with the defined settings.

Declaration
public void Render(IReport report, StreamProvider streamProvider, NameValueCollection settings)
Parameters
Type Name Description
IReport report

The report to render to Excel.

StreamProvider streamProvider

The stream used to create the Excel output file.

NameValueCollection settings

The settings to use while creating the output file.

Implements

Render(IReport, StreamProvider, NameValueCollection, CancellationToken)

Renders the IReport to the Excel file defined in streams with the defined settings.

Declaration
public void Render(IReport report, StreamProvider streamProvider, NameValueCollection settings, CancellationToken cancel)
Parameters
Type Name Description
IReport report

The report to render to Excel.

StreamProvider streamProvider

The stream used to create the Excel output file.

NameValueCollection settings

The settings to use while creating the output file.

CancellationToken cancel

The CancellationToken object that allows to interrupt rendering.

Implements