📊 Cross-platform user-friendly xlsx library for C++11+
 
 
 
 
Go to file
Thomas Fussell c87fdb1a1a link zlib to samples and benchmarks as a temporary workaround 2017-03-05 23:08:32 -05:00
benchmarks link zlib to samples and benchmarks as a temporary workaround 2017-03-05 23:08:32 -05:00
cmake intermediate commit 2017-01-21 09:04:10 -05:00
docs document some things 2017-01-26 19:57:19 -05:00
include/xlnt write missing property attribute for dcterms:created and dcterms:modified, update headingpairs and titlesofparts when sheet titles change 2017-02-27 07:47:33 -05:00
samples link zlib to samples and benchmarks as a temporary workaround 2017-03-05 23:08:32 -05:00
source clean up cmake lists 2017-03-05 22:39:27 -05:00
tests clean up cmake lists 2017-03-05 22:39:27 -05:00
third-party change cxxtest cmake min version to 3.2 to match other lists 2017-03-05 22:52:14 -05:00
.appveyor.yml update samples and benchmarks build, work on ci scripts 2017-02-28 00:07:37 -05:00
.clang-format clang-format all source files, fix broken test helpers--lots of cleanup necessary as a result [ci skip] 2016-12-24 10:04:57 -05:00
.gitattributes clean up gitattributes 2016-11-09 17:24:47 -05:00
.gitignore use externalproject instead of git submodules for dependencies 2017-03-02 08:41:17 -05:00
.gitmodules use externalproject instead of git submodules for dependencies 2017-03-02 08:41:17 -05:00
.travis.yml try to use cxxtest from apt for travis 2017-03-05 22:48:15 -05:00
AUTHORS.md Update AUTHORS.md 2016-06-04 09:08:03 -06:00
CMakeLists.txt clean up cmake lists 2017-03-05 22:39:27 -05:00
CONTRIBUTING.md Clarify how to contribute to the project 2016-09-07 18:36:36 -04:00
LICENSE.md update readme and license for crypto++ 2016-12-14 00:00:31 +00:00
README.md clean up readme, move technical stuff to separate documentation website 2017-01-19 08:59:46 -05:00

README.md

xlnt

Travis Build Status AppVeyor Build status Coverage Status ReadTheDocs Documentation Status License

Introduction

xlnt is a modern C++ library for manipulating spreadsheets in memory and reading/writing them from/to XLSX files as described in ECMA 376 4th edition. xlnt is currently under active feature development and is on track for the version 1.0 release in the next few weeks. Until then, the API could have significant changes. For a high-level summary of what you can do with this library, see here.

Example

Including xlnt in your project, creating a new spreadsheet, and saving it as "example.xlsx"

#include <xlnt/xlnt.hpp>

int main()
{
    xlnt::workbook wb;
    xlnt::worksheet ws = wb.active_sheet();
    ws.cell("A1").value(5);
    ws.cell("B2").value("string data");
    ws.cell("C3").formula("=RAND()");
    ws.merge_cells("C3:C4");
    ws.freeze_panes("B2");
    wb.save("example.xlsx");
    return 0;
}
// compile with -std=c++14 -Ixlnt/include -Lxlnt/lib -lxlnt

Documentation

Documentation for the current release of xlnt is available here.

License

xlnt is released to the public for free under the terms of the MIT License. See LICENSE.md for the full text of the license and the licenses of xlnt's third-party dependencies. LICENSE.md should be distributed alongside any assemblies that use xlnt in source or compiled form.