ブック内のワークシートの移動

Aspose.Cellsは、スプレッドシート内の別の場所にワークシートを移動するために使用されるAspose.Cells.Worksheet.MoveTo()メソッドを提供します。メソッドは移動先のワークシートのインデックスをパラメータとして取ります。

次の例は、ワークブック内でワークシートを別の場所に移動する方法を示しています。

 string FilePath = @"..\..\..\Sample Files\";

string FileName = FilePath + "Move Worksheet.xlsx";

//Open an existing excel file.

Workbook wb = new Workbook(FileName);

//Create a Worksheets object with reference to

//the sheets of the Workbook.

WorksheetCollection sheets = wb.Worksheets;

//Get the first worksheet.

Worksheet worksheet = sheets[0];

string test = worksheet.Name;

//Move the first sheet to the third position in the workbook.

worksheet.MoveTo(2);

//Save the excel file.

wb.Save(FileName);

サンプルコードをダウンロード