define worksheet::add_row_properties, closes #97

This commit is contained in:
Thomas Fussell 2017-01-02 18:36:33 -05:00
parent 186ec184e2
commit 34304fd9c7

View File

@ -886,6 +886,11 @@ const row_properties &worksheet::row_properties(row_t row) const
return d_->row_properties_.at(row);
}
void worksheet::add_row_properties(row_t row, const xlnt::row_properties &props)
{
d_->row_properties_[row] = props;
}
worksheet::iterator worksheet::begin()
{
auto dimensions = calculate_dimension();