32 #include <xlnt/xlnt_config.hpp> 33 #include <xlnt/cell/index_types.hpp> 34 #include <xlnt/packaging/relationship.hpp> 35 #include <xlnt/worksheet/page_margins.hpp> 36 #include <xlnt/worksheet/page_setup.hpp> 37 #include <xlnt/worksheet/sheet_view.hpp> 44 class column_properties;
47 class conditional_format;
48 class const_range_iterator;
53 class range_reference;
56 class sheet_format_properties;
67 struct worksheet_impl;
122 void garbage_collect();
130 std::size_t id()
const;
136 void id(std::size_t
id);
141 std::string title()
const;
146 void title(
const std::string &title);
158 void freeze_panes(
cell top_left_cell);
168 void unfreeze_panes();
173 bool has_frozen_panes()
const;
216 const class
range range(const std::string &reference_string) const;
221 class
range range(const range_reference &reference);
226 const class
range range(const range_reference &reference) const;
234 class
range rows(bool skip_null = true);
242 const class
range rows(bool skip_null = true) const;
250 class
range columns(bool skip_null = true);
258 const class
range columns(bool skip_null = true) const;
269 void clear_cell(const cell_reference &ref);
274 void clear_row(row_t row);
279 void insert_rows(row_t row, std::uint32_t amount);
284 void insert_columns(column_t column, std::uint32_t amount);
289 void delete_rows(row_t row, std::uint32_t amount);
294 void delete_columns(column_t column, std::uint32_t amount);
311 bool has_column_properties(column_t column) const;
316 void add_column_properties(column_t column, const class column_properties &props);
322 double column_width(column_t column) const;
337 bool has_row_properties(row_t row) const;
342 void add_row_properties(row_t row, const class row_properties &props);
348 double row_height(row_t row) const;
362 void create_named_range(const std::string &name, const std::string &reference_string);
367 void create_named_range(const std::string &name, const range_reference &reference);
372 bool has_named_range(const std::string &name) const;
389 void remove_named_range(const std::string &name);
396 row_t lowest_row() const;
401 row_t lowest_row_or_props() const;
406 row_t highest_row() const;
411 row_t highest_row_or_props() const;
416 row_t next_row() const;
426 column_t lowest_column_or_props() const;
436 column_t highest_column_or_props() const;
444 range_reference calculate_dimension(bool skip_null=true, bool skip_row_props=false) const;
451 void merge_cells(const std::string &reference_string);
456 void merge_cells(const range_reference &reference);
461 void unmerge_cells(const std::string &reference_string);
466 void unmerge_cells(const range_reference &reference);
471 std::vector<range_reference> merged_ranges() const;
478 bool operator==(const worksheet &other) const;
483 bool operator!=(const worksheet &other) const;
488 bool operator==(std::nullptr_t) const;
493 bool operator!=(std::nullptr_t) const;
498 void operator=(const worksheet &other);
503 class
cell operator[](const cell_reference &reference);
508 const class
cell operator[](const cell_reference &reference) const;
515 bool compare(const worksheet &other, bool compare_by_reference) const;
522 bool has_page_setup() const;
532 void
page_setup(const struct page_setup &setup);
537 bool has_page_margins() const;
559 void auto_filter(const std::string &range_string);
564 void auto_filter(const xlnt::range &range);
569 void auto_filter(const range_reference &reference);
574 void clear_auto_filter();
579 bool has_auto_filter() const;
585 void reserve(std::size_t n);
590 bool has_phonetic_properties() const;
600 void phonetic_properties(const phonetic_pr &phonetic_props);
605 bool has_header_footer() const;
615 void
header_footer(const class header_footer &new_header_footer);
660 void print_title_rows(row_t start, row_t end);
665 optional<std::pair<row_t, row_t>> print_title_rows() const;
670 void print_title_cols(column_t start, column_t end);
675 optional<std::pair<column_t, column_t>> print_title_cols() const;
680 bool has_print_titles() const;
685 void clear_print_titles();
690 void print_area(const std::string &print_area);
695 void clear_print_area();
705 bool has_print_area() const;
710 bool has_view() const;
715 sheet_view &view(std::size_t index = 0) const;
720 void add_view(const sheet_view &new_view);
725 void active_cell(const cell_reference &ref);
730 bool has_active_cell() const;
743 void clear_page_breaks();
748 const std::vector<row_t> &page_break_rows() const;
753 void page_break_at_row(row_t row);
758 const std::vector<column_t> &page_break_columns() const;
763 void page_break_at_column(column_t column);
788 void format_properties(const sheet_format_properties &properties);
793 bool has_drawing() const;
799 bool is_empty() const;
806 friend class detail::xlsx_consumer;
807 friend class detail::xlsx_producer;
817 void register_comments_in_manifest();
822 void register_calc_chain_in_manifest();
827 void garbage_collect_formulae();
832 void parent(class workbook &wb);
838 void move_cells(std::uint32_t index, std::uint32_t amount, row_or_col_t row_or_col, bool reverse = false);
843 detail::worksheet_impl *d_ = nullptr;
A range is a 2D collection of cells with defined extens that can be iterated upon.
Definition: range.hpp:53
A const version of range_iterator which does not allow modification to the dereferenced cell_vector...
Definition: range_iterator.hpp:163
Represents an association between a source Package or part, and a target object which can be a part o...
Definition: relationship.hpp:103
std::uint32_t row_t
All rows should be referred to by an instance of this type.
Definition: index_types.hpp:40
Definition: cell_reference.hpp:261
Describes the margins around a worksheet for printing.
Definition: page_margins.hpp:35
Enumerates the possible types a cell can be determined by it's current value.
Definition: cell.hpp:36
The properties of a row in a worksheet.
Definition: row_properties.hpp:38
A worksheet is a 2D array of cells starting with cell A1 in the top-left corner and extending indefin...
Definition: worksheet.hpp:75
An object used to refer to a cell. References have two parts, the column and the row. In Excel, the reference string A1 refers to the top-left-most cell. A cell_reference can be initialized from a string of this form or a 1-indexed ordered pair of the form column, row.
Definition: cell_reference.hpp:59
Describes a unit of data in a worksheet at a specific coordinate and its associated properties...
Definition: cell.hpp:83
sheet_state
Defines how a worksheet appears in the workbook. A workbook must have at least one sheet which is vis...
Definition: page_setup.hpp:75
Describes a view of a worksheet. Worksheets can have multiple views which show the data differently...
Definition: sheet_view.hpp:49
std::reverse_iterator< const_iterator > const_reverse_iterator
Iterate in reverse order over a const worksheet with an iterator of this type.
Definition: worksheet.hpp:96
value is an ISO 8601 formatted date
Encapsulates a path that points to location in a filesystem.
Definition: path.hpp:43
Many settings in xlnt are allowed to not have a value set. This class encapsulates a value which may ...
Definition: format.hpp:43
An iterator used by worksheet and range for traversing a 2D grid of cells by row/column then across t...
Definition: range_iterator.hpp:43
Columns can be referred to as a string A,B,...Z,AA,AB,..,ZZ,AAA,...,ZZZ or as a 1-indexed index...
Definition: index_types.hpp:47
A 2D range of cells in a worksheet that is referred to by name. ws->range("A1:B2") could be replaced ...
Definition: named_range.hpp:42
Describes how a worksheet will be converted into a page during printing.
Definition: page_setup.hpp:85
Properties applied to a column in a worksheet. Columns can have a size and a style.
Definition: column_properties.hpp:39
std::reverse_iterator< iterator > reverse_iterator
Iterate in reverse over a non-const worksheet with an iterator of this type.
Definition: worksheet.hpp:91
A range_reference describes a rectangular area of a worksheet with positive width and height defined ...
Definition: range_reference.hpp:36
workbook is the container for all other parts of the document.
Definition: workbook.hpp:96
Phonetic properties Element provides a collection of properties that affect display of East Asian Lan...
Definition: phonetic_pr.hpp:39