30 #include <xlnt/xlnt_config.hpp> 31 #include <xlnt/utils/optional.hpp> 71 std::string name()
const;
76 style name(
const std::string &name);
88 style hidden(
bool value);
94 bool custom_builtin()
const;
101 std::size_t builtin_id()
const;
106 bool builtin()
const;
119 bool alignment_applied()
const;
131 class border border() const;
136 bool border_applied()
const;
148 class fill fill() const;
153 bool fill_applied()
const;
165 class font font() const;
170 bool font_applied()
const;
187 bool number_format_applied()
const;
204 bool protection_applied()
const;
216 bool pivot_button()
const;
222 void pivot_button(
bool show);
227 bool quote_prefix()
const;
234 void quote_prefix(
bool quote);
247 friend struct detail::stylesheet;
248 friend class detail::xlsx_consumer;
253 style(detail::style_impl *d);
258 detail::style_impl *d_ =
nullptr;
Enumerates the possible types a cell can be determined by it's current value.
Definition: cell.hpp:36
bool operator!=(std::nullptr_t, const cell &cell)
Returns true if this cell is initialized.
Describes the font style of a particular cell.
Definition: font.hpp:41
Describes the fill style of a particular cell.
Definition: fill.hpp:299
Describes the border style of a particular cell.
Definition: border.hpp:91
bool operator==(std::nullptr_t, const cell &cell)
Returns true if this cell is uninitialized.
Alignment options that determine how text should be displayed within a cell.
Definition: alignment.hpp:63
Describes the protection style of a particular cell.
Definition: protection.hpp:36
Describes a style which has a name and can be applied to multiple individual formats. In Excel this is a "Cell Style".
Definition: style.hpp:55