EPPlus icon indicating copy to clipboard operation
EPPlus copied to clipboard

EPPlus should adjust Workbook.View.ActiveTab after moving worksheets.

Open swmal opened this issue 1 year ago • 0 comments

The follwoing logic should be implemented internally:

var activeSheet = package.Workbook.Worksheets[package.Workbook.View.ActiveTab];
package.Workbook.Worksheets.MoveToStart("test");
package.Workbook.View.ActiveTab = package.Workbook.Worksheets.ToList().IndexOf(activeSheet);

swmal avatar Mar 05 '24 12:03 swmal