Rubyでワークシートのコピーと移動する

Aspose.Cells - ワークシートのコピーと移動

ブック内でのワークシートのコピー

RubyでAspose.Cells for Javaを使用してワークシートをコピーする場合は、copyworksheetsモジュールのcopy_worksheetメソッドを呼び出します。以下に、コード例が示されています。

Ruby Code

 def copy_worksheet(workbook)

    # 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(@data_dir + "Copy Worksheet.xls")

    puts "Copy worksheet, please check the output file."

end 

ワークブック内でワークシートを移動する

RubyでAspose.Cells for Javaを使用してワークシートを移動する場合は、copyworksheetsモジュールのmove_worksheetメソッドを呼び出します。以下に、コード例が示されています。

Ruby Code

 def move_worksheet(workbook)

    # 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(@data_dir + "Move Worksheet.xls")

    puts "Move worksheet, please check the output file."

end 

ランニングコードのダウンロード

以下のどちらかのソーシャルコーディングサイトから、Aspose.Cellsワークシートのコピーと移動をダウンロードしてください: