Aspose.Cellsでのスクロールバーの表示または非表示

Aspose.Cellsは、Excelファイルを表すWorkbookクラスを提供します。Workbookクラスは、Excelファイルの管理に幅広いプロパティとメソッドを提供します。スクロールバーの表示を制御するには、WorkbookSettingsクラスのIsVScrollBarVisibleおよびIsHScrollBarVisibleプロパティを使用します。IsVScrollBarVisibleIsHScrollBarVisibleはブール値のプロパティであり、これらのプロパティはtrueまたはfalseの値のみを格納できます。

以下は、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();

ランニングコードのダウンロード

サンプルコードをダウンロード