Phpでワークシートを管理
Contents
[
Hide
]
Aspose.Cells - ワークシートの管理
新しいExcelファイルにワークシートを追加する
Aspose.Cells Java for PHPを使用して新しいExcelファイルにワークシートを追加するには、MangingWorksheetsモジュールのadd_worksheetメソッドを呼び出してください。
PHPコード
//Instantiating a Workbook object
$workbook = new Workbook();
//Adding a new worksheet to the Workbook object
$worksheets = $workbook->getWorksheets();
$sheetIndex = $worksheets->add();
$worksheet = $worksheets->get($sheetIndex);
//Setting the name of the newly added worksheet
$worksheet->setName("My Worksheet");
//Saving the Excel file
$workbook->save($dataDir . "book.out.xls");
シート名を使用してワークシートを削除する
PHPコード
PHPコード
//Creating a file stream containing the Excel file to be opened
$fstream = new FileInputStream($dataDir . "book.xls");
//Instantiating a Workbook object with the stream
$workbook = new Workbook($fstream);
//Removing a worksheet using its sheet name
$workbook->getWorksheets()->removeAt("Sheet1");
//Saving the Excel file
$workbook->save($dataDir . "book.out.xls");
//Closing the file stream to free all resources
$fstream->close();
Sheet Indexを使用してワークシートを削除する
シートインデックスを使用してワークシートを削除するには、Aspose.Cells Java for PHPを使用してMangingWorksheetsモジュールのremove_worksheet_by_indexメソッドを呼び出してください。
PHPコード
//Creating a file stream containing the Excel file to be opened
$fstream=new FileInputStream($dataDir . "book.xls");
//Instantiating a Workbook object with the stream
$workbook = new Workbook($fstream);
//Removing a worksheet using its sheet index
$workbook->getWorksheets()->removeAt(0);
//Saving the Excel file
$workbook->save($dataDir . "book.out.xls");
//Closing the file stream to free all resources
$fstream->close();
ランニングコードのダウンロード
以下のいずれかのソーシャルコーディングサイトから、Managing Worksheets (Aspose.Cells) をダウンロードしてください: