Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
Status: New
Copy merged cells, rows and Regions with cell formating in Excel Framework

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!

Parents
No Data
Comment Children