https://github.com/ClosedXML/ClosedXML

@Francois Botha Francois Botha authored on 16 Sep 2016
.nuget Project hierarchy cleanup 9 years ago
ClosedXML Clearing AutoFilter shouldn't throw an exception, even if no AutoFilter is enabled. It should just silently continue. 9 years ago
ClosedXML_Examples Fix XLColor equals method (#25) 9 years ago
ClosedXML_Net3.5 Suppress warning CS1591 (#24) 9 years ago
ClosedXML_Sandbox Remove Code Analysis configurations, which are disabled anyway. 9 years ago
ClosedXML_Tests Clearing AutoFilter shouldn't throw an exception, even if no AutoFilter is enabled. It should just silently continue. 9 years ago
.gitignore Ignore packages folder (from NuGet) 9 years ago
ClosedXML.sln Remove ClosedXML_Package project. Will be replaced by Cake build environment. 9 years ago
ClosedXML.vsmdi Project hierarchy cleanup 9 years ago
DocumentFormat.OpenXml.dll Project hierarchy cleanup 9 years ago
LICENSE Initial commit 9 years ago
README.md Update README.md 9 years ago
appveyor.yml Update appveyor.yml 9 years ago
README.md

ClosedXML

Build status

      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).

What can you do with this?

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");