Parent and Child Tasks in Ruby

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')
 2collector = Rjb::import('com.aspose.tasks.ChildTasksCollector').new
 3Rjb::import('com.aspose.tasks.TaskUtils').apply(project.getRootTask(), collector, 0)
 4tsk = Rjb::import('com.aspose.tasks.Tsk')
 5tasks = collector.getTasks()
 6i = 0
 7while i < tasks.size()
 8    task = tasks.get(i)
 9    puts "Task Name = " + task.get(tsk.NAME).to_string
10    i += 1
11end

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.