xlnt
  • Read Me
  • Introduction
    • Motivation
    • Examples
    • Features
    • Installation
  • Basics
    • Workbook
    • Worksheet
    • Cell
    • Iteration
    • Memory model
  • Advanced
    • Formatting
    • Properties
    • Printing
    • Encryption
    • Views
  • API Reference
  • Source code
  • Change Log
  • Contributing
  • License
Powered by GitBook
On this page
  • Format vs. Style
  • Number Formatting
Edit on GitHub
  1. Advanced

Formatting

Format vs. Style

#include <iostream>
#include <xlnt/xlnt.hpp>

int main()
{
    xlnt::workbook wb;
    auto cell = wb.active_sheet().cell("A1");
    return 0;
}

In the context of xlnt, format and style have specific distinct meanings. A style in xlnt corresponds to a named style created in the "Cell styles" dropdown in Excel. It must have a name and optionally any of: alignment, border, fill, font, number format, protection. A format in xlnt corresponds to the alignment, border, fill, font, number format, and protection settings applied to a cell via right-click->"Format Cells". A cell can have both a format and a style. The style properties will generally override the format properties.

Number Formatting

#include <iostream>
#include <xlnt/xlnt.hpp>

int main()
{
    xlnt::workbook wb;
    auto cell = wb.active_sheet().cell("A1");
    cell.number_format(xlnt::number_format::percentage());
    cell.value(0.513);
    std::cout << cell.to_string() << std::endl;
    return 0;
}
PreviousAdvancedNextProperties

Last updated 8 months ago

An xlnt::number_format is the format code used when displaying a value in a cell. For example, a number_format of "0.00" implies that the number 13.726 should be displayed as "13.73". Many number formats are built-in to Excel and can be access with xlnt::number_format static constructors. Other custom number formats can be created by passing a string to the .

xlnt::number_format constructor