在 Aspose.Cells 中显示或隐藏网格线
Contents
[
Hide
]
默认情况下,所有 Excel 工作表都有网格线。它们有助于描绘单元格,因此很容易将数据输入特定单元格。网格线使我们能够将工作表视为单元格的集合,其中每个单元格都很容易识别。
控制网格线的可见性
Aspose.Cells提供了一个类,工作簿,代表一个 Microsoft Excel 文件。这工作簿类包含一个工作表允许访问 Excel 文件中每个工作表的集合。
工作表由工作表班级。这工作表类提供了广泛的属性和方法来管理工作表。要控制网格线的可见性,请使用工作表班级'网格线是否可见财产。网格线是否可见是一个布尔属性,这意味着它只能存储一个真的要么错误的价值。
下面给出了一个完整的示例,演示了网格线是否可见的财产工作表类隐藏 Excel 文件第一个工作表的网格线。
在下面的屏幕截图中,您可以看到 Book1.xls 文件包含三个工作表:Sheet1、Sheet2 和 Sheet3。所有工作表都有网格线。
Book1.xls:修改前的工作表视图
Book1.xls 文件是使用 Workbook 类打开的,第一个工作表上的网格线是隐藏的。修改后的文件保存为 output.xls。
Output.xls:修改后的工作表
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();