在 Aspose.Cells 中显示或隐藏网格线

控制网格线的可见性

Aspose.Cells 提供了一个代表 Microsoft Excel 文件的类,WorkbookWorkbook 类包含一个 Worksheets 集合,允许访问 Excel 文件中的每个工作表。

工作表由 Worksheet 类表示。Worksheet 类提供了一系列属性和方法来管理工作表。要控制网格线的可见性,使用 Worksheet 类的 IsGridlinesVisible 属性。IsGridlinesVisible 是一个布尔属性,这意味着它只能存储 truefalse 值。

下面给出了一个完整的示例,演示了如何使用 Worksheet 类的 IsGridlinesVisible 属性隐藏 Excel 文件的第一个工作表的网格线。

在下面的截图中,您可以看到 Book1.xls 文件包含三个工作表:Sheet1、Sheet2 和 Sheet3。所有工作表都有网格线。

Book1.xls: 修改前的工作表视图

todo:image_alt_text

使用 Workbook 类打开 Book1.xls 文件,并将第一个工作表上的网格线隐藏。 修改后的文件将保存为 output.xls。

Output.xls: 修改后的工作表

todo:image_alt_text

C#

 //Creating a file stream containing the Excel file to be opened

FileStream fstream = new FileStream("book1.xls", FileMode.Open);

//Instantiating a Workbook object

//Opening the Excel file through the file stream

Workbook workbook = new Workbook(fstream);

//Accessing the first worksheet in the Excel file

Worksheet worksheet = workbook.Worksheets[0];

//Hiding the gridlines of the first worksheet of the Excel file

worksheet.IsGridlinesVisible = false;

//Saving the modified Excel file

workbook.Save("output.xls");

//Closing the file stream to free all resources

fstream.Close();

下载运行代码

下载示例代码