PHPでグリッド線を表示または非表示にする

Aspose.Cells - グリッド線の表示または非表示

グリッド線を非表示にする

Aspose.Cells Java for PHPを使用してワークシートを非表示にするには、displayhidegridlinesモジュールを呼び出します。

PHPコード

 data_dir = File.dirname(File.dirname(File.dirname(__FILE__))) + '/data/'

//Instantiating a Workbook object by excel file path

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

//Accessing the first worksheet in the Excel file

$worksheets = $workbook->getWorksheets();

$worksheet = $worksheets->get(0);

//Hiding the grid lines of the first worksheet of the Excel file

$worksheet->setGridlinesVisible(false);

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

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

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

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