在 Aspose.Cells 中显示或隐藏滚动条
Contents
[
Hide
]
滚动条非常适用于浏览任何文件的内容。通常有两种滚动条:
- 垂直滚动条
- 水平滚动条
Microsoft Excel还提供水平和垂直滚动条,以便用户可以滚动工作表内容。使用Aspose.Cells,开发人员可以控制Excel文件中两种类型滚动条的可见性。
Aspose.Cells 提供了一个代表 Excel 文件的 Workbook 类。 Workbook 类提供了许多属性和方法,用于管理 Excel 文件。要控制滚动条的可见性,请使用 WorkbookSettings 类的 IsVScrollBarVisible 和 IsHScrollBarVisible 属性。 IsVScrollBarVisible 和 IsHScrollBarVisible 是布尔属性,表示这些属性只能存储 true 或 false 值。
下面是一个完整的代码示例,打开一个 Excel 文件,book1.xls,隐藏滚动条,然后将修改后的文件保存为 output.xls。
下面的屏幕截图显示了包含两个滚动条的Book1.xls文件。修改后的文件保存为output.xls文件,也显示在下面。
Book1.xls: 在做出任何修改之前的Excel文件
output.xls: 修改后的Excel文件
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);
//Hiding the vertical scroll bar of the Excel file
workbook.Settings.IsVScrollBarVisible = false;
//Hiding the horizontal scroll bar of the Excel file
workbook.Settings.IsHScrollBarVisible = false;
//Saving the modified Excel file
workbook.Save("output.xls");
//Closing the file stream to free all resources
fstream.Close();