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