Ruby Programmers Guide

Aspose.Tasks - Getting Parent and Child Tasks

To get parent and Child Tasks using Aspose.Tasks Java for Ruby, call get_parent_and_child_tasks method of ParentAndChildTasks module. Here you can see example code.

 1project = Rjb::import('com.aspose.tasks.Project').new('test_tasks.mpp')
 2
 3collector = Rjb::import('com.aspose.tasks.ChildTasksCollector').new
 4
 5Rjb::import('com.aspose.tasks.TaskUtils').apply(project.getRootTask(), collector, 0)
 6
 7tsk = Rjb::import('com.aspose.tasks.Tsk')
 8
 9tasks = collector.getTasks()
10
11i = 0
12
13while i < tasks.size()
14
15    task = tasks.get(i)
16
17    puts "Task Name = " + task.get(tsk.NAME).to_string
18
19    i += 1
20
21end

Download Running Code

Download Parent and Child Tasks (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.