Skip to content

Read and create Excel files in OpenXml format. Based on "SpreadsheetLight, 3.4" library and "DocumentFormat.OpenXml, 2.0.0".

License

Notifications You must be signed in to change notification settings

soundarkarunagaran/Amba.SpreadsheetLight

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Amba.SpreadsheetLight

The library is for reading and creating Excel files in OpenXml format. Compatible wtih Microsoft Excel 2007/2010/2013 and LibreOffice Calc.

This is the fork from www.spreadsheetlight.com library with some improvements.

Library was merged with required old version of DocumentFormat.OpenXml to allow use new one.

####How to start

Install with nuget:

PM> Install-Package Amba.SpreadsheetLight

Example:

using (SLDocument sl = new SLDocument("Template.xlsx"))
{
    if (sl.SelectWorksheet("Sheet1"))
    {
        sl.SetCellValue("A1", "Hello, world!");
    }
    sl.SaveAs("GeneratedReport.xlsx");
}

You can find more tutorial and examples on Tutorial and Samples on SpreadsheetLight site.

Changelog

1.0.0 (March, 05 2015)

  • Added: SetDefinedNameValue<T> method to SLDocument class.
  • Fixed: restore row heights after inserting/deleting row(s).
  • dll merged with required old version of DocumentFormat.OpenXml to allow use new one.

License

The MIT License (MIT)

Copyright (c) 2011-2015 Vladimir Kuznetsov, Vincent Tan Wai Lip

About

Read and create Excel files in OpenXml format. Based on "SpreadsheetLight, 3.4" library and "DocumentFormat.OpenXml, 2.0.0".

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages