IExcelExporter.Export method (1 of 3)
namespace: Serenity.Reporting assembly: Serenity.Net.Services
Exports the specified data to Excel format
public byte[] Export(IEnumerable data, IEnumerable<ReportColumn> columns)
| parameter | description |
|---|---|
| data | The data. |
| columns | The columns to export. |
See Also
- class ReportColumn
- interface IExcelExporter
IExcelExporter.Export method (2 of 3)
namespace: Serenity.Reporting assembly: Serenity.Net.Services
Exports the specified data to Excel format
public byte[] Export(IEnumerable data, Type columnsType)
| parameter | description |
|---|---|
| data | The data. |
| columnsType | The columns type that will be used to determine report columns to export. |
See Also
- interface IExcelExporter
IExcelExporter.Export method (3 of 3)
namespace: Serenity.Reporting assembly: Serenity.Net.Services
Exports the specified data to Excel format
public byte[] Export(IEnumerable data, Type columnsType, IEnumerable<string> exportColumns)
| parameter | description |
|---|---|
| data | The data. |
| columnsType | The columns type that will be used to determine available report columns to export. |
| exportColumns | Determines the names and order of columns to be exported |
See Also
- interface IExcelExporter