Converting to MHTML Files in Ruby
Contents
[
Hide
]
Aspose.Cells - Converting to MHTML Files
To convert Worksheet to MHTML file using Aspose.Cells for Java in Ruby, simply invoke worksheet_to_mhtml() method of Converter module.
Ruby Code
def worksheet_to_mhtml(workbook)
save_format = Rjb::import('com.aspose.cells.SaveFormat')
# Specify the HTML saving options
sv = Rjb::import('com.aspose.cells.HtmlSaveOptions').new(save_format.M_HTML)
# Save the document
workbook.save(@data_dir + "convert.mht", sv)
puts "MHTML saved successfully."
end
Download Running Code
Download Converting to MHTML Files (Aspose.Cells) from any of the below mentioned social coding sites: