Saving a Project as PDF in Ruby

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

1project = Rjb::import('com.aspose.tasks.Project').new('test_tasks.mpp')
2options = Rjb::import('com.aspose.tasks.PdfSaveOptions').new
3options.setFitContent(true)
4options.setTimescale(Rjb::import('com.aspose.tasks.Timescale').Months)
5options.setPresentationFormat(Rjb::import('com.aspose.tasks.PresentationFormat').TaskUsage)
6options.setLegendOnEachPage(false)
7project.save("project.pdf", options)
8puts "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:

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.