// Copyright (c) 2014-2021 Thomas Fussell // Copyright (c) 2010-2015 openpyxl // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE // // @license: http://www.opensource.org/licenses/mit-license.php // @author: see AUTHORS file #pragma once #include namespace xlnt { /// /// The properties of a row in a worksheet. /// class XLNT_API row_properties { public: /// /// Row height /// optional height; /// /// Distance in pixels from the bottom of the cell to the baseline of the cell content /// optional dy_descent; /// /// Whether or not the height is different from the default /// bool custom_height = false; /// /// Whether or not the row should be hidden /// bool hidden = false; /// /// True if row style should be applied /// optional custom_format; /// /// The index to the style used by all cells in this row /// optional style; /// /// The row column span, used as part of the row block optimisation. /// This used for loading this attribute from existing excel files mainly for inspecting /// and not used when saving, it is calculated in the xlsx_producer. /// optional spans; }; inline bool operator==(const row_properties &lhs, const row_properties &rhs) { return lhs.height == rhs.height && lhs.dy_descent == rhs.dy_descent && lhs.custom_height == rhs.custom_height && lhs.hidden == rhs.hidden && lhs.custom_format == rhs.custom_format && lhs.style == rhs.style && lhs.spans == rhs.spans; } } // namespace xlnt