Outline Properties in Ruby
Contents
[
Hide
Show
]Aspose.Tasks - Getting Outline Properties
To get Outline Properties using Aspose.Tasks Java for Ruby, call get_outline_properties method of TasksProperties module. Here you can see example code.
Ruby Code
1project = Rjb::import('com.aspose.tasks.Project').new('test_tasks.mpp')
2collector = Rjb::import('com.aspose.tasks.ChildTasksCollector').new
3Rjb::import('com.aspose.tasks.TaskUtils').apply(project.getRootTask(), collector, 0)
4tasks = collector.getTasks()
5tsk = Rjb::import('com.aspose.tasks.Tsk')
6i = 0
7while i < tasks.size()
8 task = tasks.get(i)
9 puts "Outline Level: " + task.get(tsk.OUTLINE_LEVEL).to_string
10 puts "Outline Number: " + task.get(tsk.OUTLINE_NUMBER).to_string
11 puts "---------------------------------------------"
12 i += 1
13end
Download Running Code
Download General Properties (Aspose.Tasks) from any of the below mentioned social coding sites: