Phpでのワークシートのコピーと移動
Contents
[
Hide
]
Aspose.Cells - ワークシートのコピーと移動
ブック内でのワークシートのコピー
PHPでAspose.Cells for Javaを使用してワークシートをコピーする場合は、copyworksheetsモジュールのcopy_worksheetメソッドを呼び出します。以下に、コード例が示されています。
PHPコード
# Create a Worksheets object with reference to the sheets of the Workbook.
$sheets = $workbook->getWorksheets();
\# Copy data to a new sheet from an existing sheet within the Workbook.
$sheets->addCopy("Sheet1");
\# Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir . "Copy Worksheet.xls");
ワークブック内でワークシートを移動する
PHPでAspose.Cells for Javaを使用してワークシートを移動する場合は、copyworksheetsモジュールのmove_worksheetメソッドを呼び出します。以下に、コード例が示されています。
PHPコード
# Get the first worksheet in the book.
$sheet = $workbook->getWorksheets()->get(0);
\# Move the first sheet to the third position in the workbook.
$sheet->moveTo(2);
\# Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir . "Move Worksheet.xls");
ランニングコードのダウンロード
以下のどちらかのソーシャルコーディングサイトから、Aspose.Cellsのワークシートのコピーと移動をダウンロードしてください: