Actual Properties in Ruby

Aspose.Tasks - Getting Actual Properties

To get Actual Properties using Aspose.Tasks Java for Ruby, call get_actual_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 "Task Name : " + task.get(tsk.NAME).to_string
10  puts "Actual Start: " + task.get(tsk.ACTUAL_START).toString()
11  puts "Actual Finish: " + task.get(tsk.ACTUAL_FINISH).toString()
12  puts "Actual Duration: " + task.get(tsk.ACTUAL_DURATION).toString()
13  puts "Actual Cost: " + task.get(tsk.ACTUAL_COST).toString()
14  puts "---------------------------------------------"
15  i += 1
16end

Download Running Code

Download General Properties (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.