Copiare e spostare i fogli di lavoro in Php

Aspose.Cells - Copiare e spostare fogli di lavoro

Copiare i Fogli di Lavoro all’interno di una Cartella di Lavoro

Per copiare il foglio di lavoro utilizzando Aspose.Cells for Java in PHP, chiamare il metodo copy_worksheet del modulo copyworksheets. Di seguito puoi vedere un esempio di codice.

Codice 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");

Spostare i fogli di lavoro all’interno di un libro

Per spostare il foglio di lavoro utilizzando Aspose.Cells for Java in PHP, chiamare il metodo move_worksheet del modulo copyworksheets. Di seguito puoi vedere un esempio di codice.

Codice 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");

Scarica il codice in esecuzione

Scarica Copia e Spostamento dei fogli di lavoro (Aspose.Cells) da uno dei siti di codice sociale di seguito indicati: