EPPlus 设置默认工作表
EPPlus set default worksheet
我正在使用 EPPlus v4.1 在 C# 中生成 excel 文件。
有没有办法将特定作品sheet设置为默认作品sheet? (当用户打开导出的文件时,应该显示 sheet)
我无法在 ExcelWorkbook
或 ExcelWorksheets
类 上找到方法或 属性。
同时我找到了答案。我不想删除这个问题,因为它可能对其他人有用。
//this line sets the first tab in the excel file as default/active
Workbook.Worksheets.First().Select();
对于 EPPlus 5,答案是:
sheet.View.SetTabSelected();
我正在使用 EPPlus v4.1 在 C# 中生成 excel 文件。
有没有办法将特定作品sheet设置为默认作品sheet? (当用户打开导出的文件时,应该显示 sheet)
我无法在 ExcelWorkbook
或 ExcelWorksheets
类 上找到方法或 属性。
同时我找到了答案。我不想删除这个问题,因为它可能对其他人有用。
//this line sets the first tab in the excel file as default/active
Workbook.Worksheets.First().Select();
对于 EPPlus 5,答案是:
sheet.View.SetTabSelected();