Hi!
I would really like to offer you an idea for improving the excel framework.
There is a need to copy already created and formatted rows or regions together with the merged cells and their formatting.
This might look like a separate function, for example:
WorksheetRegion wsr = WorkWheet1.GetRegion("A2:Y2");
wsr.CopyFrom(WorkSheet1.GetRegion("A1:Y1"));
Or just like this:
WorksheetRegion wsr = WorkWheet1.GetRegion("A2:Y2");
wsr = WorkSheet1.GetRegion("A1:Y1");
And also about Rows:
WorkSheet1.rows[2] = WorkSheet1.rows[1];
Thus, this would seriously shorten the time it takes to create documents with complex structure and formatting.
Thank you!