mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
define worksheet::add_row_properties, closes #97
This commit is contained in:
parent
186ec184e2
commit
34304fd9c7
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user