在工作簿内复制工作表
Contents
[
Hide
]
Aspose.Cells提供了一个重载的方法Aspose.Cells.WorksheetCollection.AddCopy(),用于将工作表添加到集合中并从现有工作表复制数据。该方法的一个版本将源工作表的索引作为参数。另一个版本将源工作表的名称作为参数。
以下示例显示了如何在工作簿内复制现有工作表。
//Create a new Workbook.
//Open an existing Excel file.
Workbook wb = new Workbook("ResultedBook.xls");
//Create a Worksheets object with reference to
//the sheets of the Workbook.
WorksheetCollection sheets = wb.Worksheets;
//Copy data to a new sheet from an existing
//sheet within the Workbook.
sheets.AddCopy("MySheet");
//Save the Excel file.
wb.Save("Copy Worksheet.xls");