Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To copy a worksheet using Aspose.Cells for Java in Ruby, call the copy_worksheet method of the copyworksheets module. Below is a code example.
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 the default (Excel 2003) format
workbook.save(@data_dir + "Copy Worksheet.xls")
puts "Copy worksheet completed; please check the output file."
end To move a worksheet using Aspose.Cells for Java in Ruby, call the move_worksheet method of the copyworksheets module. Below is a code example.
Ruby Code
def move_worksheet(workbook)
# Get the first worksheet in the workbook.
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 the default (Excel 2003) format
workbook.save(@data_dir + "Move Worksheet.xls")
puts "Move worksheet completed; please check the output file."
end Download Copying and Moving Worksheets (Aspose.Cells) from any of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.