README

Travis Build Statusarrow-up-right AppVeyor Build statusarrow-up-right Coverage Statusarrow-up-right Documentation Statusarrow-up-right Licensearrow-up-right

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 editionarrow-up-right. The first public release of xlnt version 1.0 was on May 10th, 2017. Current work is focused on increasing compatibility, improving performance, and brainstorming future development goals. For a high-level summary of what you can do with this library, see the feature listarrow-up-right. Contributions are welcome in the form of pull requests or discussions on the repository's Issues pagearrow-up-right.

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

Documentation

Documentation for the current release of xlnt is available herearrow-up-right.

Building xlnt - Using vcpkg

You can download and install xlnt using the vcpkgarrow-up-right dependency manager:

The xlnt port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please create an issue or pull requestarrow-up-right on the vcpkg repository.

License

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

Last updated