Orcus
|
#include <import_interface.hpp>
Public Member Functions | |
virtual void | set_column_width (col_t col, col_t col_span, double width, orcus::length_unit_t unit)=0 |
virtual void | set_column_hidden (col_t col, col_t col_span, bool hidden)=0 |
virtual void | set_row_height (row_t row, double height, orcus::length_unit_t unit)=0 |
virtual void | set_row_hidden (row_t row, bool hidden)=0 |
virtual void | set_merge_cell_range (const range_t &range)=0 |
Interface for importing sheet properties. Sheet properties include:
These properties are independent of the cell contents of a sheet.
|
pure virtual |
Set a column hidden flag to one or more columns.
col | 0-based position of the first column. |
col_span | number of contiguous columns to apply the flag to. |
hidden | flag indicating whether or not the columns are hidden. |
|
pure virtual |
Set a column width to one or more columns.
col | 0-based position of the first column. |
col_span | number of contiguous columns to apply the width to. |
width | column width to apply. |
unit | unit of measurement to use for the width value. |
|
pure virtual |
Set a merged cell range.
range | structure containing the top-left and bottom-right positions of a merged cell range. |
|
pure virtual |
Set a row height to specified row.
row | 0-based position of a row. |
height | new row height value to set. |
unit | unit of the new row height value. |
|
pure virtual |
Set a row hidden flag to a specified row.
row | 0-based position of a row. |
hidden | flag indicating whether or not the row is hidden. |