Php'de Çalışma Sayfalarını Kopyalama ve Taşıma
Contents
[
Hide
]
Aspose.Cells - Çalışma Sayfalarını Kopyalama ve Taşıma
Çalışma Kitabındaki Çalışma Sayfalarını Kopyalama
Çalışma sayfasını kullanarak kopyalamak içinPHP’de Aspose.Cells for Java , Aramakopya_çalışma sayfası yöntemikopya çalışma sayfaları modül. Aşağıda kod örneğini görebilirsiniz.
PHP Kodu
# 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");
Çalışma Sayfalarını Çalışma Kitabı İçinde Taşıma
Çalışma sayfasını kullanarak taşımak içinPHP’de Aspose.Cells for Java , Aramamove_worksheet yöntemikopya çalışma sayfaları modül. Aşağıda kod örneğini görebilirsiniz.
PHP Kodu
# 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");
Çalışan Kodu İndir
İndirmek**Çalışma Sayfalarını Kopyalama ve Taşıma (Aspose.Cells)**aşağıda belirtilen sosyal kodlama sitelerinin herhangi birinden: