Kopiera och flytta arbetsblad i Php

Aspose.Cells - Kopiera och flytta arbetsblad

Kopiera arbetsblad i en arbetsbok

För att kopiera kalkylblad medAspose.Cells for Java i PHP , ringa uppcopy_worksheet metod avcopyworksheets modul. Nedan kan du se kodexempel.

PHP-kod

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

Flytta kalkylblad i en arbetsbok

För att flytta kalkylblad medAspose.Cells for Java i PHP , ringa uppmove_worksheet metod avcopyworksheets modul. Nedan kan du se kodexempel.

PHP-kod

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

Ladda ner Running Code

Ladda ner**Kopiera och flytta arbetsblad (Aspose.Cells)**från någon av nedan nämnda webbplatser för social kodning: