ワークブック間でワークシートをコピーする
Contents
[
Hide
]
Aspose.Cells は、ソース ワークシートからワークブック内またはワークブック間でデータとフォーマットを別のワークシートにコピーするために使用される Aspose.Cells.Worksheet.Copy() メソッドを提供します。このメソッドは、ソース ワークシート オブジェクトをパラメーターとして受け取ります。
次の例は、あるブックから別のブックにワークシートをコピーする方法を示しています。
string FilePath = @"..\..\..\Sample Files\";
string FileName = FilePath + "Workbook.xlsx 間でシートをコピー";
// 新しいワークブックを作成します。
ワークブック excelWorkbook0 = 新しいワークブック();
//ブックの最初のワークシートを取得します。
ワークシート ws0 = ExcelWorkbook0.Worksheets[0];
//ヘッダー行にデータを挿入 (A1:A4)
for (int i = 0; i< 5; i++)
{
ws0.Cells[i, 0].PutValue(string.Format("Header Row {0}", i));
}
//Put some detail data (A5:A999)
for (int i = 5; i < 1000; i++)
{
ws0.Cells[i, 0].PutValue(string.Format("Detail Row {0}", i));
}
//Define a pagesetup object based on the first worksheet.
PageSetup pagesetup = ws0.PageSetup;
//The first five rows are repeated in each page...
//It can be seen in print preview.
pagesetup.PrintTitleRows = "$1:$5";
//Create another Workbook.
Workbook excelWorkbook1 = new Workbook();
//Get the first worksheet in the book.
Worksheet ws1 = excelWorkbook1.Worksheets[0];
//Name the worksheet.
ws1.Name = "MySheet";
//Copy data from the first worksheet of the first workbook into the
//first worksheet of the second workbook.
ws1.Copy(ws0);
//Save the excel file.
excelWorkbook1.Save(FileName);
サンプルコードをダウンロード
次の例は、あるブックから別のブックにワークシートをコピーする方法を示しています。
// 新しいワークブックを作成します。
ワークブック excelWorkbook0 = 新しいワークブック();
//ブックの最初のワークシートを取得します。
ワークシート ws0 = ExcelWorkbook0.Worksheets[0];
//ヘッダー行にデータを挿入 (A1:A4)
for (int i = 0; i< 5; i++)
{
ws0.Cells[i, 0].PutValue(string.Format("Header Row {0}", i));
}
//Put some detail data (A5:A999)
for (int i = 5; i < 1000; i++)
{
ws0.Cells[i, 0].PutValue(string.Format("Detail Row {0}", i));
}
//Define a pagesetup object based on the first worksheet.
PageSetup pagesetup = ws0.PageSetup;
//The first five rows are repeated in each page...
//It can be seen in print preview.
pagesetup.PrintTitleRows = "$1:$5";
//Create another Workbook.
Workbook excelWorkbook1 = new Workbook();
//Get the first worksheet in the book.
Worksheet ws1 = excelWorkbook1.Worksheets[0];
//Name the worksheet.
ws1.Name = "MySheet";
//Copy data from the first worksheet of the first workbook into the
//first worksheet of the second workbook.
ws1.Copy(ws0);
//Save the excel file.
excelWorkbook1.Save("copyworksheet.xls");