在 Aspose.Cells 中显示或隐藏滚动条

Aspose.Cells 提供了一个代表 Excel 文件的 Workbook 类。 Workbook 类提供了许多属性和方法,用于管理 Excel 文件。要控制滚动条的可见性,请使用 WorkbookSettings 类的 IsVScrollBarVisibleIsHScrollBarVisible 属性。 IsVScrollBarVisibleIsHScrollBarVisible 是布尔属性,表示这些属性只能存储 truefalse 值。

下面是一个完整的代码示例,打开一个 Excel 文件,book1.xls,隐藏滚动条,然后将修改后的文件保存为 output.xls。

下面的屏幕截图显示了包含两个滚动条的Book1.xls文件。修改后的文件保存为output.xls文件,也显示在下面。

Book1.xls: 在做出任何修改之前的Excel文件

todo:image_alt_text

output.xls: 修改后的Excel文件

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);

//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();

下载运行代码

下载示例代码