在工作簿中复制工作表
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");