• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

xlnt-community / xlnt / 0beb586f-df55-49b8-b439-6c7390fb60e4
84%

Build:
DEFAULT BRANCH: master
Ran 19 Jan 2026 10:47AM UTC
Jobs 1
Files 116
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

19 Jan 2026 10:43AM UTC coverage: 82.793% (+0.08%) from 82.718%
0beb586f-df55-49b8-b439-6c7390fb60e4

push

circleci

web-flow
Outline level support (rows groupping) (#135)

To add row grouping functionality, the OutlineLevel parameter and
related settings were supported.

```
#include <contrib/libs/xlnt/include/xlnt/xlnt.hpp>
#include <iostream>

int main()
{
    xlnt::workbook wb;
    xlnt::worksheet ws = wb.active_sheet();

    // Create 4 rows, each on a new outline level
    for (int r = 1; r <= 4; ++r) {
        ws.cell(xlnt::cell_reference(1, r)).value("Level " + std::to_string(r - 1));

        auto props = ws.row_properties(r);
        props.outline_level = r - 1; // Levels 0, 1, 2, 3
        ws.add_row_properties(r, props);
    }

    // Configure outline settings
    ws.outline_settings(true, false, true, false);

    wb.save("outline_test.xlsx");
    std::cout << "Saved outline_test.xlsx" << std::endl;
    return 0;
}
```

This code will produce excel like this
<img width="210" height="152" alt="image"
src="https://github.com/user-attachments/assets/edeb83e4-dd36-4881-aa90-ddc017bbba2e"
/>

14500 of 19027 branches covered (76.21%)

67 of 67 new or added lines in 5 files covered. (100.0%)

11894 of 14366 relevant lines covered (82.79%)

11166.54 hits per line

Jobs
ID Job ID Ran Files Coverage
1 0beb586f-df55-49b8-b439-6c7390fb60e4.1 19 Jan 2026 10:47AM UTC 116
82.79
Source Files on build 0beb586f-df55-49b8-b439-6c7390fb60e4
  • Tree
  • List 116
  • Changed 5
  • Source Changed 5
  • Coverage Changed 5
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Repo
  • CircleCI Build #0BEB586F...
  • e1658877 on github
  • Prev Build on master (#4B5FED6E...)
  • Next Build on master (#50123244...)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc