在工作簿中隐藏和取消隐藏工作表

隐藏和取消隐藏工作表

本文比较使用 VSTO 和 C# 或 Visual Basic 隐藏工作表,并使用 Aspose.Cells 同样是通过 C# 或 Visual Basic 执行相同任务的差异。Aspose.Cells 可让您在未安装 Microsoft Excel 的情况下使用。

隐藏工作表的步骤是:

  1. 打开文件。
  2. 获取工作表。
  3. 隐藏工作表。
  4. 保存文件。

要再次取消隐藏工作表,只需切换隐藏表的可见性。

下面的代码示例首先展示了如何隐藏工作表。第一组示例展示了使用 VSTO 和 C# 或 Visual Basic 的过程,与使用 Aspose.Cells 同样是通过 C# 或 Visual Basic 进行比较。

第二组代码示例展示了在 VSTOAspose.Cells 中取消隐藏工作表所使用的代码行。

隐藏工作表

以下是VSTO和Aspose.Cells的代码示例,说明如何在工作簿中隐藏工作表。

使用 VSTO 隐藏工作表

C#

.......



using Microsoft.VisualStudio.Tools.Applications.Runtime;

using Excel = Microsoft.Office.Interop.Excel;

using Office = Microsoft.Office.Core;

using System.Reflection;

.......



//Instantiate the Application object.

Excel.Application excelApp = new Excel.ApplicationClass();



//Specify the template Excel file path.

string myPath=@"d:\test\MyBook.xls";



//Open the Excel file.

excelApp.Workbooks.Open(myPath, Missing.Value, Missing.Value,

Missing.Value, Missing.Value,

Missing.Value, Missing.Value,

Missing.Value, Missing.Value,

Missing.Value, Missing.Value,

Missing.Value, Missing.Value,

Missing.Value, Missing.Value);



//Get the first sheet.

Excel.Worksheet objSheet = (Excel.Worksheet)excelApp.ActiveWorkbook.Sheets["Sheet1"];

//Hide the worksheet.

objSheet.Visible = Excel.XlSheetVisibility.xlSheetHidden

//Save As the Excel file.

excelApp.ActiveWorkbook.Save();

//Quit the Application.

excelApp.Quit();

使用Aspose.Cells for .NET隐藏工作表

C#

.......



using Aspose.Cells;



.......



//Instantiate a new Workbook.

Workbook workbook = new Workbook();

//Specify the template Excel file path.

string myPath = @"d:\test\MyBook.xls";

//Open the Excel file.

workbook.Open(myPath);

//Get the first sheet.

Aspose.Cells.Worksheet objSheet = workbook.Worksheets["Sheet1"];

//Hide the worksheet.

objSheet.IsVisible = false;

//Save As the Excel file.

workbook.Save(@"d:\test\MyBook.xls");

取消隐藏工作表

以下是VSTO和Aspose.Cells的代码示例,说明如何在工作簿中取消隐藏工作表。

使用 VSTO 取消隐藏工作表

C#

//Unhide the worksheet.

objSheet.Visible = Excel.XlSheetVisibility.xlSheetVisible;

使用Aspose.Cells for .NET取消隐藏工作表

C#

//Unhide the worksheet.

objSheet.IsVisible = true;