Making a Standard Calendar in Ruby
Contents
[
Hide
Show
]Aspose.Tasks - Making a Standard Calendar
To create a Standard Calendar using Aspose.Tasks Java for Ruby, simply invoke CreateStandardCalendar module. Here you can see example code.
1project = Rjb::import('com.aspose.tasks.Project').new('test_tasks.mpp')
2
3cal1 = project.getCalendars().add("My Cal")
4
5Rjb::import('com.aspose.tasks.Calendar').makeStandardCalendar(cal1)
6
7project.save("CreateStandardCalendar.xml", Rjb::import('com.aspose.tasks.SaveFileFormat').XML)
8
9puts "Created standard calendar, please check the output file."
Download Running Code
Download Making a Standard Calendar (Aspose.Tasks) from any of the below mentioned social coding sites: