https://github.com/ClosedXML/ClosedXML
| .nuget | 9 years ago | ||
| ClosedXML | 9 years ago | ||
| ClosedXML_Examples | 9 years ago | ||
| ClosedXML_Net3.5 | 9 years ago | ||
| ClosedXML_Package | 9 years ago | ||
| ClosedXML_Sandbox | 9 years ago | ||
| ClosedXML_Tests | 9 years ago | ||
| .gitignore | 10 years ago | ||
| ClosedXML.sln | 9 years ago | ||
| ClosedXML.vsmdi | 9 years ago | ||
| DocumentFormat.OpenXml.dll | 9 years ago | ||
| Ionic.Zip.dll | 9 years ago | ||
| LICENSE | 9 years ago | ||
| README.md | 9 years ago | ||
| appveyor.yml | 9 years ago | ||
we are in process of moving the project from codeplex to github
Documentations to follow
ClosedXML makes it easier for developers to create Excel 2007/2010 files. It provides a nice object oriented way to manipulate the files (similar to VBA) without dealing with the hassles of XML Documents. It can be used by any .NET language like C# and Visual Basic (VB).
ClosedXML allows you to create Excel 2007/2010 files without the Excel application. The typical example is creating Excel reports on a web server.
If you've ever used the Microsoft Open XML Format SDK you know just how much code you have to write to get the same results as the following 4 lines of code.
var workbook = new XLWorkbook();
var worksheet = workbook.Worksheets.Add("Sample Sheet");
worksheet.Cell("A1").Value = "Hello World!";
workbook.SaveAs("HelloWorld.xlsx");