Saving a Project as PDF in Ruby
Contents
[
Hide
]
Aspose.Tasks - Saving a Project as PDF
To Save a Project as PDF using Aspose.Tasks Java for Ruby, simply invoke SaveProjectAsPdf module. Here you can see example code.
Ruby Code
project = Rjb::import('com.aspose.tasks.Project').new('test_tasks.mpp')
options = Rjb::import('com.aspose.tasks.PdfSaveOptions').new
options.setFitContent(true)
options.setTimescale(Rjb::import('com.aspose.tasks.Timescale').Months)
options.setPresentationFormat(Rjb::import('com.aspose.tasks.PresentationFormat').TaskUsage)
options.setLegendOnEachPage(false)
project.save("project.pdf", options)
puts "Saved project as pdf, please check the output file."
Download Running Code
Download Saving a Project as PDF (Aspose.Tasks) from any of the below mentioned social coding sites: