Info
Version: | 1.0.1 |
Author(s): | Andrei Ignat |
Last Update: | Sunday, February 14, 2016 |
.NET Fiddle: | Create the first Fiddle |
NuGet Url: | https://www.nuget.org/packages/ExporterWordExcelPDF |
Install
Install-Package ExporterWordExcelPDF
dotnet add package ExporterWordExcelPDF
paket add ExporterWordExcelPDF
ExporterWordExcelPDF Download (Unzip the "nupkg" after downloading)
Dependencies
- Newtonsoft.Json(>= 8.0.1)
- RazorEngine(>= 3.7.6)
Tags
The data could be a C# class or a JSON/CSV string
Examples:
export=new ExportExcel2007<Person>
();
data = export.ExportResult(new List<Person>() { p });
File.WriteAllBytes("a.xlsx", data);
Process.Start("a.xlsx");
data= ExportFactory.ExportDataJson(dataJson, ExportToFormat.Excel2007);
File.WriteAllBytes("bJson.xlsx", data);
Process.Start("bJson.xlsx");
More details/code at http://ignatandrei.github.io/Exporter/.