[]
Renders the IReport to the Excel file defined in streams with default settings.
public void Render(IReport report, StreamProvider streamProvider)
Type | Name | Description |
---|---|---|
IReport | report | The report to render to Excel. |
StreamProvider | streamProvider | The stream used to create the Excel output file. |
Renders the IReport to the Excel file defined in streams with default settings.
public void Render(IReport report, StreamProvider streamProvider, CancellationToken cancel)
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. |
Renders the IReport to the Excel file defined in streams with the defined settings.
public void Render(IReport report, StreamProvider streamProvider, NameValueCollection settings)
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. |
Renders the IReport to the Excel file defined in streams with the defined settings.
public void Render(IReport report, StreamProvider streamProvider, NameValueCollection settings, CancellationToken cancel)
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. |