PHPでスクロールバーを表示または非表示にする

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

スクロールバーを非表示にする

Aspose.Cells Java for PHPを使用してスクロールバーを非表示にするには、displayhidescrollbarsモジュールを呼び出します。

PHPコード

 //Instantiating a Excel object by excel file path

$workbook = new Workbook($dataDir . "book1.xls");

//Hiding the vertical scroll bar of the Excel file

$workbook->getSettings()->setVScrollBarVisible(false);

//Hiding the horizontal scroll bar of the Excel file

$workbook->getSettings()->setHScrollBarVisible(false);

//Saving the modified Excel file in default (that is Excel 2003) format

$workbook->save($dataDir . "output.xls");

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

Aspose.CellsのDisplay or Hide Scroll Barsを以下に示すソーシャルコーディングサイトからダウンロードする: