module MPXJ::TaskMethods

Constants

ATTRIBUTE_TYPES

Public Class Methods

included(base) click to toggle source
# File lib/mpxj/task_methods.rb, line 3
def self.included(base)
  base.extend(TaskClassMethods)
end

Public Instance Methods

active() click to toggle source

Retrieve the Active value

@return Active value

# File lib/mpxj/task_methods.rb, line 10
def active
  get_boolean_value(attribute_values['active'])
end
activity_codes() click to toggle source

Retrieve the Activity Codes value

@return Activity Codes value

# File lib/mpxj/task_methods.rb, line 17
def activity_codes
  attribute_values['activity_codes']
end
activity_id() click to toggle source

Retrieve the Activity ID value

@return Activity ID value

# File lib/mpxj/task_methods.rb, line 24
def activity_id
  attribute_values['activity_id']
end
activity_percent_complete() click to toggle source

Retrieve the Activity Percent Complete value

@return Activity Percent Complete value

# File lib/mpxj/task_methods.rb, line 31
def activity_percent_complete
  get_float_value(attribute_values['activity_percent_complete'])
end
activity_status() click to toggle source

Retrieve the Activity Status value

@return Activity Status value

# File lib/mpxj/task_methods.rb, line 38
def activity_status
  attribute_values['activity_status']
end
activity_type() click to toggle source

Retrieve the Activity Type value

@return Activity Type value

# File lib/mpxj/task_methods.rb, line 45
def activity_type
  attribute_values['activity_type']
end
actual_cost() click to toggle source

Retrieve the Actual Cost value

@return Actual Cost value

# File lib/mpxj/task_methods.rb, line 52
def actual_cost
  get_float_value(attribute_values['actual_cost'])
end
actual_duration() click to toggle source

Retrieve the Actual Duration value

@return Actual Duration value

# File lib/mpxj/task_methods.rb, line 59
def actual_duration
  get_duration_value(attribute_values['actual_duration'])
end
actual_duration_units() click to toggle source

Retrieve the Actual Duration Units value

@return Actual Duration Units value

# File lib/mpxj/task_methods.rb, line 66
def actual_duration_units
  attribute_values['actual_duration_units']
end
actual_finish() click to toggle source

Retrieve the Actual Finish value

@return Actual Finish value

# File lib/mpxj/task_methods.rb, line 73
def actual_finish
  get_date_value(attribute_values['actual_finish'])
end
actual_overtime_cost() click to toggle source

Retrieve the Actual Overtime Cost value

@return Actual Overtime Cost value

# File lib/mpxj/task_methods.rb, line 80
def actual_overtime_cost
  get_float_value(attribute_values['actual_overtime_cost'])
end
actual_overtime_work() click to toggle source

Retrieve the Actual Overtime Work value

@return Actual Overtime Work value

# File lib/mpxj/task_methods.rb, line 87
def actual_overtime_work
  get_duration_value(attribute_values['actual_overtime_work'])
end
actual_overtime_work_protected() click to toggle source

Retrieve the Actual Overtime Work Protected value

@return Actual Overtime Work Protected value

# File lib/mpxj/task_methods.rb, line 94
def actual_overtime_work_protected
  get_duration_value(attribute_values['actual_overtime_work_protected'])
end
actual_start() click to toggle source

Retrieve the Actual Start value

@return Actual Start value

# File lib/mpxj/task_methods.rb, line 101
def actual_start
  get_date_value(attribute_values['actual_start'])
end
actual_work() click to toggle source

Retrieve the Actual Work value

@return Actual Work value

# File lib/mpxj/task_methods.rb, line 108
def actual_work
  get_duration_value(attribute_values['actual_work'])
end
actual_work_labor() click to toggle source

Retrieve the Actual Work (Labor) value

@return Actual Work (Labor) value

# File lib/mpxj/task_methods.rb, line 115
def actual_work_labor
  get_duration_value(attribute_values['actual_work_labor'])
end
actual_work_nonlabor() click to toggle source

Retrieve the Actual Work (Nonlabor) value

@return Actual Work (Nonlabor) value

# File lib/mpxj/task_methods.rb, line 122
def actual_work_nonlabor
  get_duration_value(attribute_values['actual_work_nonlabor'])
end
actual_work_protected() click to toggle source

Retrieve the Actual Work Protected value

@return Actual Work Protected value

# File lib/mpxj/task_methods.rb, line 129
def actual_work_protected
  get_duration_value(attribute_values['actual_work_protected'])
end
acwp() click to toggle source

Retrieve the ACWP value

@return ACWP value

# File lib/mpxj/task_methods.rb, line 136
def acwp
  get_float_value(attribute_values['acwp'])
end
assignment() click to toggle source

Retrieve the Assignment value

@return Assignment value

# File lib/mpxj/task_methods.rb, line 143
def assignment
  get_boolean_value(attribute_values['assignment'])
end
assignment_delay() click to toggle source

Retrieve the Assignment Delay value

@return Assignment Delay value

# File lib/mpxj/task_methods.rb, line 150
def assignment_delay
  attribute_values['assignment_delay']
end
assignment_owner() click to toggle source

Retrieve the Assignment Owner value

@return Assignment Owner value

# File lib/mpxj/task_methods.rb, line 157
def assignment_owner
  attribute_values['assignment_owner']
end
assignment_units() click to toggle source

Retrieve the Assignment Units value

@return Assignment Units value

# File lib/mpxj/task_methods.rb, line 164
def assignment_units
  attribute_values['assignment_units']
end
attribute_types() click to toggle source
# File lib/mpxj/task_methods.rb, line 7898
def attribute_types
  ATTRIBUTE_TYPES
end
bar_name() click to toggle source

Retrieve the Bar Name value

@return Bar Name value

# File lib/mpxj/task_methods.rb, line 171
def bar_name
  attribute_values['bar_name']
end
baseline10_budget_cost() click to toggle source

Retrieve the Baseline10 Budget Cost value

@return Baseline10 Budget Cost value

# File lib/mpxj/task_methods.rb, line 178
def baseline10_budget_cost
  get_float_value(attribute_values['baseline10_budget_cost'])
end
baseline10_budget_work() click to toggle source

Retrieve the Baseline10 Budget Work value

@return Baseline10 Budget Work value

# File lib/mpxj/task_methods.rb, line 185
def baseline10_budget_work
  get_duration_value(attribute_values['baseline10_budget_work'])
end
baseline10_cost() click to toggle source

Retrieve the Baseline10 Cost value

@return Baseline10 Cost value

# File lib/mpxj/task_methods.rb, line 192
def baseline10_cost
  get_float_value(attribute_values['baseline10_cost'])
end
baseline10_deliverable_finish() click to toggle source

Retrieve the Baseline10 Deliverable Finish value

@return Baseline10 Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 199
def baseline10_deliverable_finish
  get_date_value(attribute_values['baseline10_deliverable_finish'])
end
baseline10_deliverable_start() click to toggle source

Retrieve the Baseline10 Deliverable Start value

@return Baseline10 Deliverable Start value

# File lib/mpxj/task_methods.rb, line 206
def baseline10_deliverable_start
  get_date_value(attribute_values['baseline10_deliverable_start'])
end
baseline10_duration() click to toggle source

Retrieve the Baseline10 Duration value

@return Baseline10 Duration value

# File lib/mpxj/task_methods.rb, line 213
def baseline10_duration
  get_duration_value(attribute_values['baseline10_duration'])
end
baseline10_duration_estimated() click to toggle source

Retrieve the Baseline10 Duration Estimated value

@return Baseline10 Duration Estimated value

# File lib/mpxj/task_methods.rb, line 220
def baseline10_duration_estimated
  get_boolean_value(attribute_values['baseline10_duration_estimated'])
end
baseline10_duration_units() click to toggle source

Retrieve the Baseline10 Duration Units value

@return Baseline10 Duration Units value

# File lib/mpxj/task_methods.rb, line 227
def baseline10_duration_units
  attribute_values['baseline10_duration_units']
end
baseline10_estimated_duration() click to toggle source

Retrieve the Baseline10 Estimated Duration value

@return Baseline10 Estimated Duration value

# File lib/mpxj/task_methods.rb, line 234
def baseline10_estimated_duration
  get_duration_value(attribute_values['baseline10_estimated_duration'])
end
baseline10_estimated_finish() click to toggle source

Retrieve the Baseline10 Estimated Finish value

@return Baseline10 Estimated Finish value

# File lib/mpxj/task_methods.rb, line 241
def baseline10_estimated_finish
  get_date_value(attribute_values['baseline10_estimated_finish'])
end
baseline10_estimated_start() click to toggle source

Retrieve the Baseline10 Estimated Start value

@return Baseline10 Estimated Start value

# File lib/mpxj/task_methods.rb, line 248
def baseline10_estimated_start
  get_date_value(attribute_values['baseline10_estimated_start'])
end
baseline10_finish() click to toggle source

Retrieve the Baseline10 Finish value

@return Baseline10 Finish value

# File lib/mpxj/task_methods.rb, line 255
def baseline10_finish
  get_date_value(attribute_values['baseline10_finish'])
end
baseline10_fixed_cost() click to toggle source

Retrieve the Baseline10 Fixed Cost value

@return Baseline10 Fixed Cost value

# File lib/mpxj/task_methods.rb, line 262
def baseline10_fixed_cost
  get_float_value(attribute_values['baseline10_fixed_cost'])
end
baseline10_fixed_cost_accrual() click to toggle source

Retrieve the Baseline10 Fixed Cost Accrual value

@return Baseline10 Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 269
def baseline10_fixed_cost_accrual
  attribute_values['baseline10_fixed_cost_accrual']
end
baseline10_start() click to toggle source

Retrieve the Baseline10 Start value

@return Baseline10 Start value

# File lib/mpxj/task_methods.rb, line 276
def baseline10_start
  get_date_value(attribute_values['baseline10_start'])
end
baseline10_work() click to toggle source

Retrieve the Baseline10 Work value

@return Baseline10 Work value

# File lib/mpxj/task_methods.rb, line 283
def baseline10_work
  get_duration_value(attribute_values['baseline10_work'])
end
baseline1_budget_cost() click to toggle source

Retrieve the Baseline1 Budget Cost value

@return Baseline1 Budget Cost value

# File lib/mpxj/task_methods.rb, line 290
def baseline1_budget_cost
  get_float_value(attribute_values['baseline1_budget_cost'])
end
baseline1_budget_work() click to toggle source

Retrieve the Baseline1 Budget Work value

@return Baseline1 Budget Work value

# File lib/mpxj/task_methods.rb, line 297
def baseline1_budget_work
  get_duration_value(attribute_values['baseline1_budget_work'])
end
baseline1_cost() click to toggle source

Retrieve the Baseline1 Cost value

@return Baseline1 Cost value

# File lib/mpxj/task_methods.rb, line 304
def baseline1_cost
  get_float_value(attribute_values['baseline1_cost'])
end
baseline1_deliverable_finish() click to toggle source

Retrieve the Baseline1 Deliverable Finish value

@return Baseline1 Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 311
def baseline1_deliverable_finish
  get_date_value(attribute_values['baseline1_deliverable_finish'])
end
baseline1_deliverable_start() click to toggle source

Retrieve the Baseline1 Deliverable Start value

@return Baseline1 Deliverable Start value

# File lib/mpxj/task_methods.rb, line 318
def baseline1_deliverable_start
  get_date_value(attribute_values['baseline1_deliverable_start'])
end
baseline1_duration() click to toggle source

Retrieve the Baseline1 Duration value

@return Baseline1 Duration value

# File lib/mpxj/task_methods.rb, line 325
def baseline1_duration
  get_duration_value(attribute_values['baseline1_duration'])
end
baseline1_duration_estimated() click to toggle source

Retrieve the Baseline1 Duration Estimated value

@return Baseline1 Duration Estimated value

# File lib/mpxj/task_methods.rb, line 332
def baseline1_duration_estimated
  get_boolean_value(attribute_values['baseline1_duration_estimated'])
end
baseline1_duration_units() click to toggle source

Retrieve the Baseline1 Duration Units value

@return Baseline1 Duration Units value

# File lib/mpxj/task_methods.rb, line 339
def baseline1_duration_units
  attribute_values['baseline1_duration_units']
end
baseline1_estimated_duration() click to toggle source

Retrieve the Baseline1 Estimated Duration value

@return Baseline1 Estimated Duration value

# File lib/mpxj/task_methods.rb, line 346
def baseline1_estimated_duration
  get_duration_value(attribute_values['baseline1_estimated_duration'])
end
baseline1_estimated_finish() click to toggle source

Retrieve the Baseline1 Estimated Finish value

@return Baseline1 Estimated Finish value

# File lib/mpxj/task_methods.rb, line 353
def baseline1_estimated_finish
  get_date_value(attribute_values['baseline1_estimated_finish'])
end
baseline1_estimated_start() click to toggle source

Retrieve the Baseline1 Estimated Start value

@return Baseline1 Estimated Start value

# File lib/mpxj/task_methods.rb, line 360
def baseline1_estimated_start
  get_date_value(attribute_values['baseline1_estimated_start'])
end
baseline1_finish() click to toggle source

Retrieve the Baseline1 Finish value

@return Baseline1 Finish value

# File lib/mpxj/task_methods.rb, line 367
def baseline1_finish
  get_date_value(attribute_values['baseline1_finish'])
end
baseline1_fixed_cost() click to toggle source

Retrieve the Baseline1 Fixed Cost value

@return Baseline1 Fixed Cost value

# File lib/mpxj/task_methods.rb, line 374
def baseline1_fixed_cost
  get_float_value(attribute_values['baseline1_fixed_cost'])
end
baseline1_fixed_cost_accrual() click to toggle source

Retrieve the Baseline1 Fixed Cost Accrual value

@return Baseline1 Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 381
def baseline1_fixed_cost_accrual
  attribute_values['baseline1_fixed_cost_accrual']
end
baseline1_start() click to toggle source

Retrieve the Baseline1 Start value

@return Baseline1 Start value

# File lib/mpxj/task_methods.rb, line 388
def baseline1_start
  get_date_value(attribute_values['baseline1_start'])
end
baseline1_work() click to toggle source

Retrieve the Baseline1 Work value

@return Baseline1 Work value

# File lib/mpxj/task_methods.rb, line 395
def baseline1_work
  get_duration_value(attribute_values['baseline1_work'])
end
baseline2_budget_cost() click to toggle source

Retrieve the Baseline2 Budget Cost value

@return Baseline2 Budget Cost value

# File lib/mpxj/task_methods.rb, line 402
def baseline2_budget_cost
  get_float_value(attribute_values['baseline2_budget_cost'])
end
baseline2_budget_work() click to toggle source

Retrieve the Baseline2 Budget Work value

@return Baseline2 Budget Work value

# File lib/mpxj/task_methods.rb, line 409
def baseline2_budget_work
  get_duration_value(attribute_values['baseline2_budget_work'])
end
baseline2_cost() click to toggle source

Retrieve the Baseline2 Cost value

@return Baseline2 Cost value

# File lib/mpxj/task_methods.rb, line 416
def baseline2_cost
  get_float_value(attribute_values['baseline2_cost'])
end
baseline2_deliverable_finish() click to toggle source

Retrieve the Baseline2 Deliverable Finish value

@return Baseline2 Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 423
def baseline2_deliverable_finish
  get_date_value(attribute_values['baseline2_deliverable_finish'])
end
baseline2_deliverable_start() click to toggle source

Retrieve the Baseline2 Deliverable Start value

@return Baseline2 Deliverable Start value

# File lib/mpxj/task_methods.rb, line 430
def baseline2_deliverable_start
  get_date_value(attribute_values['baseline2_deliverable_start'])
end
baseline2_duration() click to toggle source

Retrieve the Baseline2 Duration value

@return Baseline2 Duration value

# File lib/mpxj/task_methods.rb, line 437
def baseline2_duration
  get_duration_value(attribute_values['baseline2_duration'])
end
baseline2_duration_estimated() click to toggle source

Retrieve the Baseline2 Duration Estimated value

@return Baseline2 Duration Estimated value

# File lib/mpxj/task_methods.rb, line 444
def baseline2_duration_estimated
  get_boolean_value(attribute_values['baseline2_duration_estimated'])
end
baseline2_duration_units() click to toggle source

Retrieve the Baseline2 Duration Units value

@return Baseline2 Duration Units value

# File lib/mpxj/task_methods.rb, line 451
def baseline2_duration_units
  attribute_values['baseline2_duration_units']
end
baseline2_estimated_duration() click to toggle source

Retrieve the Baseline2 Estimated Duration value

@return Baseline2 Estimated Duration value

# File lib/mpxj/task_methods.rb, line 458
def baseline2_estimated_duration
  get_duration_value(attribute_values['baseline2_estimated_duration'])
end
baseline2_estimated_finish() click to toggle source

Retrieve the Baseline2 Estimated Finish value

@return Baseline2 Estimated Finish value

# File lib/mpxj/task_methods.rb, line 465
def baseline2_estimated_finish
  get_date_value(attribute_values['baseline2_estimated_finish'])
end
baseline2_estimated_start() click to toggle source

Retrieve the Baseline2 Estimated Start value

@return Baseline2 Estimated Start value

# File lib/mpxj/task_methods.rb, line 472
def baseline2_estimated_start
  get_date_value(attribute_values['baseline2_estimated_start'])
end
baseline2_finish() click to toggle source

Retrieve the Baseline2 Finish value

@return Baseline2 Finish value

# File lib/mpxj/task_methods.rb, line 479
def baseline2_finish
  get_date_value(attribute_values['baseline2_finish'])
end
baseline2_fixed_cost() click to toggle source

Retrieve the Baseline2 Fixed Cost value

@return Baseline2 Fixed Cost value

# File lib/mpxj/task_methods.rb, line 486
def baseline2_fixed_cost
  get_float_value(attribute_values['baseline2_fixed_cost'])
end
baseline2_fixed_cost_accrual() click to toggle source

Retrieve the Baseline2 Fixed Cost Accrual value

@return Baseline2 Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 493
def baseline2_fixed_cost_accrual
  attribute_values['baseline2_fixed_cost_accrual']
end
baseline2_start() click to toggle source

Retrieve the Baseline2 Start value

@return Baseline2 Start value

# File lib/mpxj/task_methods.rb, line 500
def baseline2_start
  get_date_value(attribute_values['baseline2_start'])
end
baseline2_work() click to toggle source

Retrieve the Baseline2 Work value

@return Baseline2 Work value

# File lib/mpxj/task_methods.rb, line 507
def baseline2_work
  get_duration_value(attribute_values['baseline2_work'])
end
baseline3_budget_cost() click to toggle source

Retrieve the Baseline3 Budget Cost value

@return Baseline3 Budget Cost value

# File lib/mpxj/task_methods.rb, line 514
def baseline3_budget_cost
  get_float_value(attribute_values['baseline3_budget_cost'])
end
baseline3_budget_work() click to toggle source

Retrieve the Baseline3 Budget Work value

@return Baseline3 Budget Work value

# File lib/mpxj/task_methods.rb, line 521
def baseline3_budget_work
  get_duration_value(attribute_values['baseline3_budget_work'])
end
baseline3_cost() click to toggle source

Retrieve the Baseline3 Cost value

@return Baseline3 Cost value

# File lib/mpxj/task_methods.rb, line 528
def baseline3_cost
  get_float_value(attribute_values['baseline3_cost'])
end
baseline3_deliverable_finish() click to toggle source

Retrieve the Baseline3 Deliverable Finish value

@return Baseline3 Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 535
def baseline3_deliverable_finish
  get_date_value(attribute_values['baseline3_deliverable_finish'])
end
baseline3_deliverable_start() click to toggle source

Retrieve the Baseline3 Deliverable Start value

@return Baseline3 Deliverable Start value

# File lib/mpxj/task_methods.rb, line 542
def baseline3_deliverable_start
  get_date_value(attribute_values['baseline3_deliverable_start'])
end
baseline3_duration() click to toggle source

Retrieve the Baseline3 Duration value

@return Baseline3 Duration value

# File lib/mpxj/task_methods.rb, line 549
def baseline3_duration
  get_duration_value(attribute_values['baseline3_duration'])
end
baseline3_duration_estimated() click to toggle source

Retrieve the Baseline3 Duration Estimated value

@return Baseline3 Duration Estimated value

# File lib/mpxj/task_methods.rb, line 556
def baseline3_duration_estimated
  get_boolean_value(attribute_values['baseline3_duration_estimated'])
end
baseline3_duration_units() click to toggle source

Retrieve the Baseline3 Duration Units value

@return Baseline3 Duration Units value

# File lib/mpxj/task_methods.rb, line 563
def baseline3_duration_units
  attribute_values['baseline3_duration_units']
end
baseline3_estimated_duration() click to toggle source

Retrieve the Baseline3 Estimated Duration value

@return Baseline3 Estimated Duration value

# File lib/mpxj/task_methods.rb, line 570
def baseline3_estimated_duration
  get_duration_value(attribute_values['baseline3_estimated_duration'])
end
baseline3_estimated_finish() click to toggle source

Retrieve the Baseline3 Estimated Finish value

@return Baseline3 Estimated Finish value

# File lib/mpxj/task_methods.rb, line 577
def baseline3_estimated_finish
  get_date_value(attribute_values['baseline3_estimated_finish'])
end
baseline3_estimated_start() click to toggle source

Retrieve the Baseline3 Estimated Start value

@return Baseline3 Estimated Start value

# File lib/mpxj/task_methods.rb, line 584
def baseline3_estimated_start
  get_date_value(attribute_values['baseline3_estimated_start'])
end
baseline3_finish() click to toggle source

Retrieve the Baseline3 Finish value

@return Baseline3 Finish value

# File lib/mpxj/task_methods.rb, line 591
def baseline3_finish
  get_date_value(attribute_values['baseline3_finish'])
end
baseline3_fixed_cost() click to toggle source

Retrieve the Baseline3 Fixed Cost value

@return Baseline3 Fixed Cost value

# File lib/mpxj/task_methods.rb, line 598
def baseline3_fixed_cost
  get_float_value(attribute_values['baseline3_fixed_cost'])
end
baseline3_fixed_cost_accrual() click to toggle source

Retrieve the Baseline3 Fixed Cost Accrual value

@return Baseline3 Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 605
def baseline3_fixed_cost_accrual
  attribute_values['baseline3_fixed_cost_accrual']
end
baseline3_start() click to toggle source

Retrieve the Baseline3 Start value

@return Baseline3 Start value

# File lib/mpxj/task_methods.rb, line 612
def baseline3_start
  get_date_value(attribute_values['baseline3_start'])
end
baseline3_work() click to toggle source

Retrieve the Baseline3 Work value

@return Baseline3 Work value

# File lib/mpxj/task_methods.rb, line 619
def baseline3_work
  get_duration_value(attribute_values['baseline3_work'])
end
baseline4_budget_cost() click to toggle source

Retrieve the Baseline4 Budget Cost value

@return Baseline4 Budget Cost value

# File lib/mpxj/task_methods.rb, line 626
def baseline4_budget_cost
  get_float_value(attribute_values['baseline4_budget_cost'])
end
baseline4_budget_work() click to toggle source

Retrieve the Baseline4 Budget Work value

@return Baseline4 Budget Work value

# File lib/mpxj/task_methods.rb, line 633
def baseline4_budget_work
  get_duration_value(attribute_values['baseline4_budget_work'])
end
baseline4_cost() click to toggle source

Retrieve the Baseline4 Cost value

@return Baseline4 Cost value

# File lib/mpxj/task_methods.rb, line 640
def baseline4_cost
  get_float_value(attribute_values['baseline4_cost'])
end
baseline4_deliverable_finish() click to toggle source

Retrieve the Baseline4 Deliverable Finish value

@return Baseline4 Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 647
def baseline4_deliverable_finish
  get_date_value(attribute_values['baseline4_deliverable_finish'])
end
baseline4_deliverable_start() click to toggle source

Retrieve the Baseline4 Deliverable Start value

@return Baseline4 Deliverable Start value

# File lib/mpxj/task_methods.rb, line 654
def baseline4_deliverable_start
  get_date_value(attribute_values['baseline4_deliverable_start'])
end
baseline4_duration() click to toggle source

Retrieve the Baseline4 Duration value

@return Baseline4 Duration value

# File lib/mpxj/task_methods.rb, line 661
def baseline4_duration
  get_duration_value(attribute_values['baseline4_duration'])
end
baseline4_duration_estimated() click to toggle source

Retrieve the Baseline4 Duration Estimated value

@return Baseline4 Duration Estimated value

# File lib/mpxj/task_methods.rb, line 668
def baseline4_duration_estimated
  get_boolean_value(attribute_values['baseline4_duration_estimated'])
end
baseline4_duration_units() click to toggle source

Retrieve the Baseline4 Duration Units value

@return Baseline4 Duration Units value

# File lib/mpxj/task_methods.rb, line 675
def baseline4_duration_units
  attribute_values['baseline4_duration_units']
end
baseline4_estimated_duration() click to toggle source

Retrieve the Baseline4 Estimated Duration value

@return Baseline4 Estimated Duration value

# File lib/mpxj/task_methods.rb, line 682
def baseline4_estimated_duration
  get_duration_value(attribute_values['baseline4_estimated_duration'])
end
baseline4_estimated_finish() click to toggle source

Retrieve the Baseline4 Estimated Finish value

@return Baseline4 Estimated Finish value

# File lib/mpxj/task_methods.rb, line 689
def baseline4_estimated_finish
  get_date_value(attribute_values['baseline4_estimated_finish'])
end
baseline4_estimated_start() click to toggle source

Retrieve the Baseline4 Estimated Start value

@return Baseline4 Estimated Start value

# File lib/mpxj/task_methods.rb, line 696
def baseline4_estimated_start
  get_date_value(attribute_values['baseline4_estimated_start'])
end
baseline4_finish() click to toggle source

Retrieve the Baseline4 Finish value

@return Baseline4 Finish value

# File lib/mpxj/task_methods.rb, line 703
def baseline4_finish
  get_date_value(attribute_values['baseline4_finish'])
end
baseline4_fixed_cost() click to toggle source

Retrieve the Baseline4 Fixed Cost value

@return Baseline4 Fixed Cost value

# File lib/mpxj/task_methods.rb, line 710
def baseline4_fixed_cost
  get_float_value(attribute_values['baseline4_fixed_cost'])
end
baseline4_fixed_cost_accrual() click to toggle source

Retrieve the Baseline4 Fixed Cost Accrual value

@return Baseline4 Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 717
def baseline4_fixed_cost_accrual
  attribute_values['baseline4_fixed_cost_accrual']
end
baseline4_start() click to toggle source

Retrieve the Baseline4 Start value

@return Baseline4 Start value

# File lib/mpxj/task_methods.rb, line 724
def baseline4_start
  get_date_value(attribute_values['baseline4_start'])
end
baseline4_work() click to toggle source

Retrieve the Baseline4 Work value

@return Baseline4 Work value

# File lib/mpxj/task_methods.rb, line 731
def baseline4_work
  get_duration_value(attribute_values['baseline4_work'])
end
baseline5_budget_cost() click to toggle source

Retrieve the Baseline5 Budget Cost value

@return Baseline5 Budget Cost value

# File lib/mpxj/task_methods.rb, line 738
def baseline5_budget_cost
  get_float_value(attribute_values['baseline5_budget_cost'])
end
baseline5_budget_work() click to toggle source

Retrieve the Baseline5 Budget Work value

@return Baseline5 Budget Work value

# File lib/mpxj/task_methods.rb, line 745
def baseline5_budget_work
  get_duration_value(attribute_values['baseline5_budget_work'])
end
baseline5_cost() click to toggle source

Retrieve the Baseline5 Cost value

@return Baseline5 Cost value

# File lib/mpxj/task_methods.rb, line 752
def baseline5_cost
  get_float_value(attribute_values['baseline5_cost'])
end
baseline5_deliverable_finish() click to toggle source

Retrieve the Baseline5 Deliverable Finish value

@return Baseline5 Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 759
def baseline5_deliverable_finish
  get_date_value(attribute_values['baseline5_deliverable_finish'])
end
baseline5_deliverable_start() click to toggle source

Retrieve the Baseline5 Deliverable Start value

@return Baseline5 Deliverable Start value

# File lib/mpxj/task_methods.rb, line 766
def baseline5_deliverable_start
  get_date_value(attribute_values['baseline5_deliverable_start'])
end
baseline5_duration() click to toggle source

Retrieve the Baseline5 Duration value

@return Baseline5 Duration value

# File lib/mpxj/task_methods.rb, line 773
def baseline5_duration
  get_duration_value(attribute_values['baseline5_duration'])
end
baseline5_duration_estimated() click to toggle source

Retrieve the Baseline5 Duration Estimated value

@return Baseline5 Duration Estimated value

# File lib/mpxj/task_methods.rb, line 780
def baseline5_duration_estimated
  get_boolean_value(attribute_values['baseline5_duration_estimated'])
end
baseline5_duration_units() click to toggle source

Retrieve the Baseline5 Duration Units value

@return Baseline5 Duration Units value

# File lib/mpxj/task_methods.rb, line 787
def baseline5_duration_units
  attribute_values['baseline5_duration_units']
end
baseline5_estimated_duration() click to toggle source

Retrieve the Baseline5 Estimated Duration value

@return Baseline5 Estimated Duration value

# File lib/mpxj/task_methods.rb, line 794
def baseline5_estimated_duration
  get_duration_value(attribute_values['baseline5_estimated_duration'])
end
baseline5_estimated_finish() click to toggle source

Retrieve the Baseline5 Estimated Finish value

@return Baseline5 Estimated Finish value

# File lib/mpxj/task_methods.rb, line 801
def baseline5_estimated_finish
  get_date_value(attribute_values['baseline5_estimated_finish'])
end
baseline5_estimated_start() click to toggle source

Retrieve the Baseline5 Estimated Start value

@return Baseline5 Estimated Start value

# File lib/mpxj/task_methods.rb, line 808
def baseline5_estimated_start
  get_date_value(attribute_values['baseline5_estimated_start'])
end
baseline5_finish() click to toggle source

Retrieve the Baseline5 Finish value

@return Baseline5 Finish value

# File lib/mpxj/task_methods.rb, line 815
def baseline5_finish
  get_date_value(attribute_values['baseline5_finish'])
end
baseline5_fixed_cost() click to toggle source

Retrieve the Baseline5 Fixed Cost value

@return Baseline5 Fixed Cost value

# File lib/mpxj/task_methods.rb, line 822
def baseline5_fixed_cost
  get_float_value(attribute_values['baseline5_fixed_cost'])
end
baseline5_fixed_cost_accrual() click to toggle source

Retrieve the Baseline5 Fixed Cost Accrual value

@return Baseline5 Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 829
def baseline5_fixed_cost_accrual
  attribute_values['baseline5_fixed_cost_accrual']
end
baseline5_start() click to toggle source

Retrieve the Baseline5 Start value

@return Baseline5 Start value

# File lib/mpxj/task_methods.rb, line 836
def baseline5_start
  get_date_value(attribute_values['baseline5_start'])
end
baseline5_work() click to toggle source

Retrieve the Baseline5 Work value

@return Baseline5 Work value

# File lib/mpxj/task_methods.rb, line 843
def baseline5_work
  get_duration_value(attribute_values['baseline5_work'])
end
baseline6_budget_cost() click to toggle source

Retrieve the Baseline6 Budget Cost value

@return Baseline6 Budget Cost value

# File lib/mpxj/task_methods.rb, line 850
def baseline6_budget_cost
  get_float_value(attribute_values['baseline6_budget_cost'])
end
baseline6_budget_work() click to toggle source

Retrieve the Baseline6 Budget Work value

@return Baseline6 Budget Work value

# File lib/mpxj/task_methods.rb, line 857
def baseline6_budget_work
  get_duration_value(attribute_values['baseline6_budget_work'])
end
baseline6_cost() click to toggle source

Retrieve the Baseline6 Cost value

@return Baseline6 Cost value

# File lib/mpxj/task_methods.rb, line 864
def baseline6_cost
  get_float_value(attribute_values['baseline6_cost'])
end
baseline6_deliverable_finish() click to toggle source

Retrieve the Baseline6 Deliverable Finish value

@return Baseline6 Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 871
def baseline6_deliverable_finish
  get_date_value(attribute_values['baseline6_deliverable_finish'])
end
baseline6_deliverable_start() click to toggle source

Retrieve the Baseline6 Deliverable Start value

@return Baseline6 Deliverable Start value

# File lib/mpxj/task_methods.rb, line 878
def baseline6_deliverable_start
  get_date_value(attribute_values['baseline6_deliverable_start'])
end
baseline6_duration() click to toggle source

Retrieve the Baseline6 Duration value

@return Baseline6 Duration value

# File lib/mpxj/task_methods.rb, line 885
def baseline6_duration
  get_duration_value(attribute_values['baseline6_duration'])
end
baseline6_duration_estimated() click to toggle source

Retrieve the Baseline6 Duration Estimated value

@return Baseline6 Duration Estimated value

# File lib/mpxj/task_methods.rb, line 892
def baseline6_duration_estimated
  get_boolean_value(attribute_values['baseline6_duration_estimated'])
end
baseline6_duration_units() click to toggle source

Retrieve the Baseline6 Duration Units value

@return Baseline6 Duration Units value

# File lib/mpxj/task_methods.rb, line 899
def baseline6_duration_units
  attribute_values['baseline6_duration_units']
end
baseline6_estimated_duration() click to toggle source

Retrieve the Baseline6 Estimated Duration value

@return Baseline6 Estimated Duration value

# File lib/mpxj/task_methods.rb, line 906
def baseline6_estimated_duration
  get_duration_value(attribute_values['baseline6_estimated_duration'])
end
baseline6_estimated_finish() click to toggle source

Retrieve the Baseline6 Estimated Finish value

@return Baseline6 Estimated Finish value

# File lib/mpxj/task_methods.rb, line 913
def baseline6_estimated_finish
  get_date_value(attribute_values['baseline6_estimated_finish'])
end
baseline6_estimated_start() click to toggle source

Retrieve the Baseline6 Estimated Start value

@return Baseline6 Estimated Start value

# File lib/mpxj/task_methods.rb, line 920
def baseline6_estimated_start
  get_date_value(attribute_values['baseline6_estimated_start'])
end
baseline6_finish() click to toggle source

Retrieve the Baseline6 Finish value

@return Baseline6 Finish value

# File lib/mpxj/task_methods.rb, line 927
def baseline6_finish
  get_date_value(attribute_values['baseline6_finish'])
end
baseline6_fixed_cost() click to toggle source

Retrieve the Baseline6 Fixed Cost value

@return Baseline6 Fixed Cost value

# File lib/mpxj/task_methods.rb, line 934
def baseline6_fixed_cost
  get_float_value(attribute_values['baseline6_fixed_cost'])
end
baseline6_fixed_cost_accrual() click to toggle source

Retrieve the Baseline6 Fixed Cost Accrual value

@return Baseline6 Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 941
def baseline6_fixed_cost_accrual
  attribute_values['baseline6_fixed_cost_accrual']
end
baseline6_start() click to toggle source

Retrieve the Baseline6 Start value

@return Baseline6 Start value

# File lib/mpxj/task_methods.rb, line 948
def baseline6_start
  get_date_value(attribute_values['baseline6_start'])
end
baseline6_work() click to toggle source

Retrieve the Baseline6 Work value

@return Baseline6 Work value

# File lib/mpxj/task_methods.rb, line 955
def baseline6_work
  get_duration_value(attribute_values['baseline6_work'])
end
baseline7_budget_cost() click to toggle source

Retrieve the Baseline7 Budget Cost value

@return Baseline7 Budget Cost value

# File lib/mpxj/task_methods.rb, line 962
def baseline7_budget_cost
  get_float_value(attribute_values['baseline7_budget_cost'])
end
baseline7_budget_work() click to toggle source

Retrieve the Baseline7 Budget Work value

@return Baseline7 Budget Work value

# File lib/mpxj/task_methods.rb, line 969
def baseline7_budget_work
  get_duration_value(attribute_values['baseline7_budget_work'])
end
baseline7_cost() click to toggle source

Retrieve the Baseline7 Cost value

@return Baseline7 Cost value

# File lib/mpxj/task_methods.rb, line 976
def baseline7_cost
  get_float_value(attribute_values['baseline7_cost'])
end
baseline7_deliverable_finish() click to toggle source

Retrieve the Baseline7 Deliverable Finish value

@return Baseline7 Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 983
def baseline7_deliverable_finish
  get_date_value(attribute_values['baseline7_deliverable_finish'])
end
baseline7_deliverable_start() click to toggle source

Retrieve the Baseline7 Deliverable Start value

@return Baseline7 Deliverable Start value

# File lib/mpxj/task_methods.rb, line 990
def baseline7_deliverable_start
  get_date_value(attribute_values['baseline7_deliverable_start'])
end
baseline7_duration() click to toggle source

Retrieve the Baseline7 Duration value

@return Baseline7 Duration value

# File lib/mpxj/task_methods.rb, line 997
def baseline7_duration
  get_duration_value(attribute_values['baseline7_duration'])
end
baseline7_duration_estimated() click to toggle source

Retrieve the Baseline7 Duration Estimated value

@return Baseline7 Duration Estimated value

# File lib/mpxj/task_methods.rb, line 1004
def baseline7_duration_estimated
  get_boolean_value(attribute_values['baseline7_duration_estimated'])
end
baseline7_duration_units() click to toggle source

Retrieve the Baseline7 Duration Units value

@return Baseline7 Duration Units value

# File lib/mpxj/task_methods.rb, line 1011
def baseline7_duration_units
  attribute_values['baseline7_duration_units']
end
baseline7_estimated_duration() click to toggle source

Retrieve the Baseline7 Estimated Duration value

@return Baseline7 Estimated Duration value

# File lib/mpxj/task_methods.rb, line 1018
def baseline7_estimated_duration
  get_duration_value(attribute_values['baseline7_estimated_duration'])
end
baseline7_estimated_finish() click to toggle source

Retrieve the Baseline7 Estimated Finish value

@return Baseline7 Estimated Finish value

# File lib/mpxj/task_methods.rb, line 1025
def baseline7_estimated_finish
  get_date_value(attribute_values['baseline7_estimated_finish'])
end
baseline7_estimated_start() click to toggle source

Retrieve the Baseline7 Estimated Start value

@return Baseline7 Estimated Start value

# File lib/mpxj/task_methods.rb, line 1032
def baseline7_estimated_start
  get_date_value(attribute_values['baseline7_estimated_start'])
end
baseline7_finish() click to toggle source

Retrieve the Baseline7 Finish value

@return Baseline7 Finish value

# File lib/mpxj/task_methods.rb, line 1039
def baseline7_finish
  get_date_value(attribute_values['baseline7_finish'])
end
baseline7_fixed_cost() click to toggle source

Retrieve the Baseline7 Fixed Cost value

@return Baseline7 Fixed Cost value

# File lib/mpxj/task_methods.rb, line 1046
def baseline7_fixed_cost
  get_float_value(attribute_values['baseline7_fixed_cost'])
end
baseline7_fixed_cost_accrual() click to toggle source

Retrieve the Baseline7 Fixed Cost Accrual value

@return Baseline7 Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 1053
def baseline7_fixed_cost_accrual
  attribute_values['baseline7_fixed_cost_accrual']
end
baseline7_start() click to toggle source

Retrieve the Baseline7 Start value

@return Baseline7 Start value

# File lib/mpxj/task_methods.rb, line 1060
def baseline7_start
  get_date_value(attribute_values['baseline7_start'])
end
baseline7_work() click to toggle source

Retrieve the Baseline7 Work value

@return Baseline7 Work value

# File lib/mpxj/task_methods.rb, line 1067
def baseline7_work
  get_duration_value(attribute_values['baseline7_work'])
end
baseline8_budget_cost() click to toggle source

Retrieve the Baseline8 Budget Cost value

@return Baseline8 Budget Cost value

# File lib/mpxj/task_methods.rb, line 1074
def baseline8_budget_cost
  get_float_value(attribute_values['baseline8_budget_cost'])
end
baseline8_budget_work() click to toggle source

Retrieve the Baseline8 Budget Work value

@return Baseline8 Budget Work value

# File lib/mpxj/task_methods.rb, line 1081
def baseline8_budget_work
  get_duration_value(attribute_values['baseline8_budget_work'])
end
baseline8_cost() click to toggle source

Retrieve the Baseline8 Cost value

@return Baseline8 Cost value

# File lib/mpxj/task_methods.rb, line 1088
def baseline8_cost
  get_float_value(attribute_values['baseline8_cost'])
end
baseline8_deliverable_finish() click to toggle source

Retrieve the Baseline8 Deliverable Finish value

@return Baseline8 Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 1095
def baseline8_deliverable_finish
  get_date_value(attribute_values['baseline8_deliverable_finish'])
end
baseline8_deliverable_start() click to toggle source

Retrieve the Baseline8 Deliverable Start value

@return Baseline8 Deliverable Start value

# File lib/mpxj/task_methods.rb, line 1102
def baseline8_deliverable_start
  get_date_value(attribute_values['baseline8_deliverable_start'])
end
baseline8_duration() click to toggle source

Retrieve the Baseline8 Duration value

@return Baseline8 Duration value

# File lib/mpxj/task_methods.rb, line 1109
def baseline8_duration
  get_duration_value(attribute_values['baseline8_duration'])
end
baseline8_duration_estimated() click to toggle source

Retrieve the Baseline8 Duration Estimated value

@return Baseline8 Duration Estimated value

# File lib/mpxj/task_methods.rb, line 1116
def baseline8_duration_estimated
  get_boolean_value(attribute_values['baseline8_duration_estimated'])
end
baseline8_duration_units() click to toggle source

Retrieve the Baseline8 Duration Units value

@return Baseline8 Duration Units value

# File lib/mpxj/task_methods.rb, line 1123
def baseline8_duration_units
  attribute_values['baseline8_duration_units']
end
baseline8_estimated_duration() click to toggle source

Retrieve the Baseline8 Estimated Duration value

@return Baseline8 Estimated Duration value

# File lib/mpxj/task_methods.rb, line 1130
def baseline8_estimated_duration
  get_duration_value(attribute_values['baseline8_estimated_duration'])
end
baseline8_estimated_finish() click to toggle source

Retrieve the Baseline8 Estimated Finish value

@return Baseline8 Estimated Finish value

# File lib/mpxj/task_methods.rb, line 1137
def baseline8_estimated_finish
  get_date_value(attribute_values['baseline8_estimated_finish'])
end
baseline8_estimated_start() click to toggle source

Retrieve the Baseline8 Estimated Start value

@return Baseline8 Estimated Start value

# File lib/mpxj/task_methods.rb, line 1144
def baseline8_estimated_start
  get_date_value(attribute_values['baseline8_estimated_start'])
end
baseline8_finish() click to toggle source

Retrieve the Baseline8 Finish value

@return Baseline8 Finish value

# File lib/mpxj/task_methods.rb, line 1151
def baseline8_finish
  get_date_value(attribute_values['baseline8_finish'])
end
baseline8_fixed_cost() click to toggle source

Retrieve the Baseline8 Fixed Cost value

@return Baseline8 Fixed Cost value

# File lib/mpxj/task_methods.rb, line 1158
def baseline8_fixed_cost
  get_float_value(attribute_values['baseline8_fixed_cost'])
end
baseline8_fixed_cost_accrual() click to toggle source

Retrieve the Baseline8 Fixed Cost Accrual value

@return Baseline8 Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 1165
def baseline8_fixed_cost_accrual
  attribute_values['baseline8_fixed_cost_accrual']
end
baseline8_start() click to toggle source

Retrieve the Baseline8 Start value

@return Baseline8 Start value

# File lib/mpxj/task_methods.rb, line 1172
def baseline8_start
  get_date_value(attribute_values['baseline8_start'])
end
baseline8_work() click to toggle source

Retrieve the Baseline8 Work value

@return Baseline8 Work value

# File lib/mpxj/task_methods.rb, line 1179
def baseline8_work
  get_duration_value(attribute_values['baseline8_work'])
end
baseline9_budget_cost() click to toggle source

Retrieve the Baseline9 Budget Cost value

@return Baseline9 Budget Cost value

# File lib/mpxj/task_methods.rb, line 1186
def baseline9_budget_cost
  get_float_value(attribute_values['baseline9_budget_cost'])
end
baseline9_budget_work() click to toggle source

Retrieve the Baseline9 Budget Work value

@return Baseline9 Budget Work value

# File lib/mpxj/task_methods.rb, line 1193
def baseline9_budget_work
  get_duration_value(attribute_values['baseline9_budget_work'])
end
baseline9_cost() click to toggle source

Retrieve the Baseline9 Cost value

@return Baseline9 Cost value

# File lib/mpxj/task_methods.rb, line 1200
def baseline9_cost
  get_float_value(attribute_values['baseline9_cost'])
end
baseline9_deliverable_finish() click to toggle source

Retrieve the Baseline9 Deliverable Finish value

@return Baseline9 Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 1207
def baseline9_deliverable_finish
  get_date_value(attribute_values['baseline9_deliverable_finish'])
end
baseline9_deliverable_start() click to toggle source

Retrieve the Baseline9 Deliverable Start value

@return Baseline9 Deliverable Start value

# File lib/mpxj/task_methods.rb, line 1214
def baseline9_deliverable_start
  get_date_value(attribute_values['baseline9_deliverable_start'])
end
baseline9_duration() click to toggle source

Retrieve the Baseline9 Duration value

@return Baseline9 Duration value

# File lib/mpxj/task_methods.rb, line 1221
def baseline9_duration
  get_duration_value(attribute_values['baseline9_duration'])
end
baseline9_duration_estimated() click to toggle source

Retrieve the Baseline9 Duration Estimated value

@return Baseline9 Duration Estimated value

# File lib/mpxj/task_methods.rb, line 1228
def baseline9_duration_estimated
  get_boolean_value(attribute_values['baseline9_duration_estimated'])
end
baseline9_duration_units() click to toggle source

Retrieve the Baseline9 Duration Units value

@return Baseline9 Duration Units value

# File lib/mpxj/task_methods.rb, line 1235
def baseline9_duration_units
  attribute_values['baseline9_duration_units']
end
baseline9_estimated_duration() click to toggle source

Retrieve the Baseline9 Estimated Duration value

@return Baseline9 Estimated Duration value

# File lib/mpxj/task_methods.rb, line 1242
def baseline9_estimated_duration
  get_duration_value(attribute_values['baseline9_estimated_duration'])
end
baseline9_estimated_finish() click to toggle source

Retrieve the Baseline9 Estimated Finish value

@return Baseline9 Estimated Finish value

# File lib/mpxj/task_methods.rb, line 1249
def baseline9_estimated_finish
  get_date_value(attribute_values['baseline9_estimated_finish'])
end
baseline9_estimated_start() click to toggle source

Retrieve the Baseline9 Estimated Start value

@return Baseline9 Estimated Start value

# File lib/mpxj/task_methods.rb, line 1256
def baseline9_estimated_start
  get_date_value(attribute_values['baseline9_estimated_start'])
end
baseline9_finish() click to toggle source

Retrieve the Baseline9 Finish value

@return Baseline9 Finish value

# File lib/mpxj/task_methods.rb, line 1263
def baseline9_finish
  get_date_value(attribute_values['baseline9_finish'])
end
baseline9_fixed_cost() click to toggle source

Retrieve the Baseline9 Fixed Cost value

@return Baseline9 Fixed Cost value

# File lib/mpxj/task_methods.rb, line 1270
def baseline9_fixed_cost
  get_float_value(attribute_values['baseline9_fixed_cost'])
end
baseline9_fixed_cost_accrual() click to toggle source

Retrieve the Baseline9 Fixed Cost Accrual value

@return Baseline9 Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 1277
def baseline9_fixed_cost_accrual
  attribute_values['baseline9_fixed_cost_accrual']
end
baseline9_start() click to toggle source

Retrieve the Baseline9 Start value

@return Baseline9 Start value

# File lib/mpxj/task_methods.rb, line 1284
def baseline9_start
  get_date_value(attribute_values['baseline9_start'])
end
baseline9_work() click to toggle source

Retrieve the Baseline9 Work value

@return Baseline9 Work value

# File lib/mpxj/task_methods.rb, line 1291
def baseline9_work
  get_duration_value(attribute_values['baseline9_work'])
end
baseline_budget_cost() click to toggle source

Retrieve the Baseline Budget Cost value

@return Baseline Budget Cost value

# File lib/mpxj/task_methods.rb, line 1298
def baseline_budget_cost
  get_float_value(attribute_values['baseline_budget_cost'])
end
baseline_budget_work() click to toggle source

Retrieve the Baseline Budget Work value

@return Baseline Budget Work value

# File lib/mpxj/task_methods.rb, line 1305
def baseline_budget_work
  get_duration_value(attribute_values['baseline_budget_work'])
end
baseline_cost() click to toggle source

Retrieve the Baseline Cost value

@return Baseline Cost value

# File lib/mpxj/task_methods.rb, line 1312
def baseline_cost
  get_float_value(attribute_values['baseline_cost'])
end
baseline_deliverable_finish() click to toggle source

Retrieve the Baseline Deliverable Finish value

@return Baseline Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 1319
def baseline_deliverable_finish
  get_date_value(attribute_values['baseline_deliverable_finish'])
end
baseline_deliverable_start() click to toggle source

Retrieve the Baseline Deliverable Start value

@return Baseline Deliverable Start value

# File lib/mpxj/task_methods.rb, line 1326
def baseline_deliverable_start
  get_date_value(attribute_values['baseline_deliverable_start'])
end
baseline_duration() click to toggle source

Retrieve the Baseline Duration value

@return Baseline Duration value

# File lib/mpxj/task_methods.rb, line 1333
def baseline_duration
  get_duration_value(attribute_values['baseline_duration'])
end
baseline_duration_estimated() click to toggle source

Retrieve the Baseline Duration Estimated value

@return Baseline Duration Estimated value

# File lib/mpxj/task_methods.rb, line 1340
def baseline_duration_estimated
  get_boolean_value(attribute_values['baseline_duration_estimated'])
end
baseline_duration_units() click to toggle source

Retrieve the Baseline Duration Units value

@return Baseline Duration Units value

# File lib/mpxj/task_methods.rb, line 1347
def baseline_duration_units
  attribute_values['baseline_duration_units']
end
baseline_estimated_duration() click to toggle source

Retrieve the Baseline Estimated Duration value

@return Baseline Estimated Duration value

# File lib/mpxj/task_methods.rb, line 1354
def baseline_estimated_duration
  get_duration_value(attribute_values['baseline_estimated_duration'])
end
baseline_estimated_finish() click to toggle source

Retrieve the Baseline Estimated Finish value

@return Baseline Estimated Finish value

# File lib/mpxj/task_methods.rb, line 1361
def baseline_estimated_finish
  get_date_value(attribute_values['baseline_estimated_finish'])
end
baseline_estimated_start() click to toggle source

Retrieve the Baseline Estimated Start value

@return Baseline Estimated Start value

# File lib/mpxj/task_methods.rb, line 1368
def baseline_estimated_start
  get_date_value(attribute_values['baseline_estimated_start'])
end
baseline_finish() click to toggle source

Retrieve the Baseline Finish value

@return Baseline Finish value

# File lib/mpxj/task_methods.rb, line 1375
def baseline_finish
  get_date_value(attribute_values['baseline_finish'])
end
baseline_fixed_cost() click to toggle source

Retrieve the Baseline Fixed Cost value

@return Baseline Fixed Cost value

# File lib/mpxj/task_methods.rb, line 1382
def baseline_fixed_cost
  get_float_value(attribute_values['baseline_fixed_cost'])
end
baseline_fixed_cost_accrual() click to toggle source

Retrieve the Baseline Fixed Cost Accrual value

@return Baseline Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 1389
def baseline_fixed_cost_accrual
  attribute_values['baseline_fixed_cost_accrual']
end
baseline_start() click to toggle source

Retrieve the Baseline Start value

@return Baseline Start value

# File lib/mpxj/task_methods.rb, line 1396
def baseline_start
  get_date_value(attribute_values['baseline_start'])
end
baseline_work() click to toggle source

Retrieve the Baseline Work value

@return Baseline Work value

# File lib/mpxj/task_methods.rb, line 1403
def baseline_work
  get_duration_value(attribute_values['baseline_work'])
end
bcwp() click to toggle source

Retrieve the BCWP value

@return BCWP value

# File lib/mpxj/task_methods.rb, line 1410
def bcwp
  get_float_value(attribute_values['bcwp'])
end
bcws() click to toggle source

Retrieve the BCWS value

@return BCWS value

# File lib/mpxj/task_methods.rb, line 1417
def bcws
  get_float_value(attribute_values['bcws'])
end
bid_item() click to toggle source

Retrieve the Bid Item value

@return Bid Item value

# File lib/mpxj/task_methods.rb, line 1424
def bid_item
  attribute_values['bid_item']
end
board_status() click to toggle source

Retrieve the Board Status value

@return Board Status value

# File lib/mpxj/task_methods.rb, line 1431
def board_status
  attribute_values['board_status']
end
board_status_id() click to toggle source

Retrieve the Board Status ID value

@return Board Status ID value

# File lib/mpxj/task_methods.rb, line 1438
def board_status_id
  get_integer_value(attribute_values['board_status_id'])
end
budget_cost() click to toggle source

Retrieve the Budget Cost value

@return Budget Cost value

# File lib/mpxj/task_methods.rb, line 1445
def budget_cost
  get_float_value(attribute_values['budget_cost'])
end
budget_work() click to toggle source

Retrieve the Budget Work value

@return Budget Work value

# File lib/mpxj/task_methods.rb, line 1452
def budget_work
  get_duration_value(attribute_values['budget_work'])
end
calendar_unique_id() click to toggle source

Retrieve the Calendar Unique ID value

@return Calendar Unique ID value

# File lib/mpxj/task_methods.rb, line 1459
def calendar_unique_id
  get_integer_value(attribute_values['calendar_unique_id'])
end
category_of_work() click to toggle source

Retrieve the Category of Work value

@return Category of Work value

# File lib/mpxj/task_methods.rb, line 1466
def category_of_work
  attribute_values['category_of_work']
end
complete_through() click to toggle source

Retrieve the Complete Through value

@return Complete Through value

# File lib/mpxj/task_methods.rb, line 1473
def complete_through
  get_date_value(attribute_values['complete_through'])
end
confirmed() click to toggle source

Retrieve the Confirmed value

@return Confirmed value

# File lib/mpxj/task_methods.rb, line 1480
def confirmed
  get_boolean_value(attribute_values['confirmed'])
end
constraint_date() click to toggle source

Retrieve the Constraint Date value

@return Constraint Date value

# File lib/mpxj/task_methods.rb, line 1487
def constraint_date
  get_date_value(attribute_values['constraint_date'])
end
constraint_type() click to toggle source

Retrieve the Constraint Type value

@return Constraint Type value

# File lib/mpxj/task_methods.rb, line 1494
def constraint_type
  attribute_values['constraint_type']
end
contact() click to toggle source

Retrieve the Contact value

@return Contact value

# File lib/mpxj/task_methods.rb, line 1501
def contact
  attribute_values['contact']
end
cost() click to toggle source

Retrieve the Cost value

@return Cost value

# File lib/mpxj/task_methods.rb, line 1508
def cost
  get_float_value(attribute_values['cost'])
end
cost1() click to toggle source

Retrieve the Cost1 value

@return Cost1 value

# File lib/mpxj/task_methods.rb, line 1515
def cost1
  get_float_value(attribute_values['cost1'])
end
cost10() click to toggle source

Retrieve the Cost10 value

@return Cost10 value

# File lib/mpxj/task_methods.rb, line 1522
def cost10
  get_float_value(attribute_values['cost10'])
end
cost2() click to toggle source

Retrieve the Cost2 value

@return Cost2 value

# File lib/mpxj/task_methods.rb, line 1529
def cost2
  get_float_value(attribute_values['cost2'])
end
cost3() click to toggle source

Retrieve the Cost3 value

@return Cost3 value

# File lib/mpxj/task_methods.rb, line 1536
def cost3
  get_float_value(attribute_values['cost3'])
end
cost4() click to toggle source

Retrieve the Cost4 value

@return Cost4 value

# File lib/mpxj/task_methods.rb, line 1543
def cost4
  get_float_value(attribute_values['cost4'])
end
cost5() click to toggle source

Retrieve the Cost5 value

@return Cost5 value

# File lib/mpxj/task_methods.rb, line 1550
def cost5
  get_float_value(attribute_values['cost5'])
end
cost6() click to toggle source

Retrieve the Cost6 value

@return Cost6 value

# File lib/mpxj/task_methods.rb, line 1557
def cost6
  get_float_value(attribute_values['cost6'])
end
cost7() click to toggle source

Retrieve the Cost7 value

@return Cost7 value

# File lib/mpxj/task_methods.rb, line 1564
def cost7
  get_float_value(attribute_values['cost7'])
end
cost8() click to toggle source

Retrieve the Cost8 value

@return Cost8 value

# File lib/mpxj/task_methods.rb, line 1571
def cost8
  get_float_value(attribute_values['cost8'])
end
cost9() click to toggle source

Retrieve the Cost9 value

@return Cost9 value

# File lib/mpxj/task_methods.rb, line 1578
def cost9
  get_float_value(attribute_values['cost9'])
end
cost_rate_table() click to toggle source

Retrieve the Cost Rate Table value

@return Cost Rate Table value

# File lib/mpxj/task_methods.rb, line 1585
def cost_rate_table
  attribute_values['cost_rate_table']
end
cost_variance() click to toggle source

Retrieve the Cost Variance value

@return Cost Variance value

# File lib/mpxj/task_methods.rb, line 1592
def cost_variance
  get_float_value(attribute_values['cost_variance'])
end
cpi() click to toggle source

Retrieve the CPI value

@return CPI value

# File lib/mpxj/task_methods.rb, line 1599
def cpi
  get_float_value(attribute_values['cpi'])
end
created() click to toggle source

Retrieve the Created value

@return Created value

# File lib/mpxj/task_methods.rb, line 1606
def created
  get_date_value(attribute_values['created'])
end
critical() click to toggle source

Retrieve the Critical value

@return Critical value

# File lib/mpxj/task_methods.rb, line 1613
def critical
  get_boolean_value(attribute_values['critical'])
end
cv() click to toggle source

Retrieve the CV value

@return CV value

# File lib/mpxj/task_methods.rb, line 1620
def cv
  get_float_value(attribute_values['cv'])
end
cvpercent() click to toggle source

Retrieve the CV% value

@return CV% value

# File lib/mpxj/task_methods.rb, line 1627
def cvpercent
  get_float_value(attribute_values['cvpercent'])
end
date1() click to toggle source

Retrieve the Date1 value

@return Date1 value

# File lib/mpxj/task_methods.rb, line 1634
def date1
  get_date_value(attribute_values['date1'])
end
date10() click to toggle source

Retrieve the Date10 value

@return Date10 value

# File lib/mpxj/task_methods.rb, line 1641
def date10
  get_date_value(attribute_values['date10'])
end
date2() click to toggle source

Retrieve the Date2 value

@return Date2 value

# File lib/mpxj/task_methods.rb, line 1648
def date2
  get_date_value(attribute_values['date2'])
end
date3() click to toggle source

Retrieve the Date3 value

@return Date3 value

# File lib/mpxj/task_methods.rb, line 1655
def date3
  get_date_value(attribute_values['date3'])
end
date4() click to toggle source

Retrieve the Date4 value

@return Date4 value

# File lib/mpxj/task_methods.rb, line 1662
def date4
  get_date_value(attribute_values['date4'])
end
date5() click to toggle source

Retrieve the Date5 value

@return Date5 value

# File lib/mpxj/task_methods.rb, line 1669
def date5
  get_date_value(attribute_values['date5'])
end
date6() click to toggle source

Retrieve the Date6 value

@return Date6 value

# File lib/mpxj/task_methods.rb, line 1676
def date6
  get_date_value(attribute_values['date6'])
end
date7() click to toggle source

Retrieve the Date7 value

@return Date7 value

# File lib/mpxj/task_methods.rb, line 1683
def date7
  get_date_value(attribute_values['date7'])
end
date8() click to toggle source

Retrieve the Date8 value

@return Date8 value

# File lib/mpxj/task_methods.rb, line 1690
def date8
  get_date_value(attribute_values['date8'])
end
date9() click to toggle source

Retrieve the Date9 value

@return Date9 value

# File lib/mpxj/task_methods.rb, line 1697
def date9
  get_date_value(attribute_values['date9'])
end
deadline() click to toggle source

Retrieve the Deadline value

@return Deadline value

# File lib/mpxj/task_methods.rb, line 1704
def deadline
  get_date_value(attribute_values['deadline'])
end
deliverable_finish() click to toggle source

Retrieve the Deliverable Finish value

@return Deliverable Finish value

# File lib/mpxj/task_methods.rb, line 1711
def deliverable_finish
  get_date_value(attribute_values['deliverable_finish'])
end
deliverable_guid() click to toggle source

Retrieve the Deliverable GUID value

@return Deliverable GUID value

# File lib/mpxj/task_methods.rb, line 1718
def deliverable_guid
  attribute_values['deliverable_guid']
end
deliverable_name() click to toggle source

Retrieve the Deliverable Name value

@return Deliverable Name value

# File lib/mpxj/task_methods.rb, line 1725
def deliverable_name
  attribute_values['deliverable_name']
end
deliverable_start() click to toggle source

Retrieve the Deliverable Start value

@return Deliverable Start value

# File lib/mpxj/task_methods.rb, line 1732
def deliverable_start
  get_date_value(attribute_values['deliverable_start'])
end
deliverable_type() click to toggle source

Retrieve the Deliverable Type value

@return Deliverable Type value

# File lib/mpxj/task_methods.rb, line 1739
def deliverable_type
  attribute_values['deliverable_type']
end
department() click to toggle source

Retrieve the Department value

@return Department value

# File lib/mpxj/task_methods.rb, line 1746
def department
  attribute_values['department']
end
duration() click to toggle source

Retrieve the Duration value

@return Duration value

# File lib/mpxj/task_methods.rb, line 1753
def duration
  get_duration_value(attribute_values['duration'])
end
duration1() click to toggle source

Retrieve the Duration1 value

@return Duration1 value

# File lib/mpxj/task_methods.rb, line 1760
def duration1
  get_duration_value(attribute_values['duration1'])
end
duration10() click to toggle source

Retrieve the Duration10 value

@return Duration10 value

# File lib/mpxj/task_methods.rb, line 1767
def duration10
  get_duration_value(attribute_values['duration10'])
end
duration10_estimated() click to toggle source

Retrieve the Duration10 Estimated value

@return Duration10 Estimated value

# File lib/mpxj/task_methods.rb, line 1774
def duration10_estimated
  get_boolean_value(attribute_values['duration10_estimated'])
end
duration10_units() click to toggle source

Retrieve the Duration10 Units value

@return Duration10 Units value

# File lib/mpxj/task_methods.rb, line 1781
def duration10_units
  attribute_values['duration10_units']
end
duration1_estimated() click to toggle source

Retrieve the Duration1 Estimated value

@return Duration1 Estimated value

# File lib/mpxj/task_methods.rb, line 1788
def duration1_estimated
  get_boolean_value(attribute_values['duration1_estimated'])
end
duration1_units() click to toggle source

Retrieve the Duration1 Units value

@return Duration1 Units value

# File lib/mpxj/task_methods.rb, line 1795
def duration1_units
  attribute_values['duration1_units']
end
duration2() click to toggle source

Retrieve the Duration2 value

@return Duration2 value

# File lib/mpxj/task_methods.rb, line 1802
def duration2
  get_duration_value(attribute_values['duration2'])
end
duration2_estimated() click to toggle source

Retrieve the Duration2 Estimated value

@return Duration2 Estimated value

# File lib/mpxj/task_methods.rb, line 1809
def duration2_estimated
  get_boolean_value(attribute_values['duration2_estimated'])
end
duration2_units() click to toggle source

Retrieve the Duration2 Units value

@return Duration2 Units value

# File lib/mpxj/task_methods.rb, line 1816
def duration2_units
  attribute_values['duration2_units']
end
duration3() click to toggle source

Retrieve the Duration3 value

@return Duration3 value

# File lib/mpxj/task_methods.rb, line 1823
def duration3
  get_duration_value(attribute_values['duration3'])
end
duration3_estimated() click to toggle source

Retrieve the Duration3 Estimated value

@return Duration3 Estimated value

# File lib/mpxj/task_methods.rb, line 1830
def duration3_estimated
  get_boolean_value(attribute_values['duration3_estimated'])
end
duration3_units() click to toggle source

Retrieve the Duration3 Units value

@return Duration3 Units value

# File lib/mpxj/task_methods.rb, line 1837
def duration3_units
  attribute_values['duration3_units']
end
duration4() click to toggle source

Retrieve the Duration4 value

@return Duration4 value

# File lib/mpxj/task_methods.rb, line 1844
def duration4
  get_duration_value(attribute_values['duration4'])
end
duration4_estimated() click to toggle source

Retrieve the Duration4 Estimated value

@return Duration4 Estimated value

# File lib/mpxj/task_methods.rb, line 1851
def duration4_estimated
  get_boolean_value(attribute_values['duration4_estimated'])
end
duration4_units() click to toggle source

Retrieve the Duration4 Units value

@return Duration4 Units value

# File lib/mpxj/task_methods.rb, line 1858
def duration4_units
  attribute_values['duration4_units']
end
duration5() click to toggle source

Retrieve the Duration5 value

@return Duration5 value

# File lib/mpxj/task_methods.rb, line 1865
def duration5
  get_duration_value(attribute_values['duration5'])
end
duration5_estimated() click to toggle source

Retrieve the Duration5 Estimated value

@return Duration5 Estimated value

# File lib/mpxj/task_methods.rb, line 1872
def duration5_estimated
  get_boolean_value(attribute_values['duration5_estimated'])
end
duration5_units() click to toggle source

Retrieve the Duration5 Units value

@return Duration5 Units value

# File lib/mpxj/task_methods.rb, line 1879
def duration5_units
  attribute_values['duration5_units']
end
duration6() click to toggle source

Retrieve the Duration6 value

@return Duration6 value

# File lib/mpxj/task_methods.rb, line 1886
def duration6
  get_duration_value(attribute_values['duration6'])
end
duration6_estimated() click to toggle source

Retrieve the Duration6 Estimated value

@return Duration6 Estimated value

# File lib/mpxj/task_methods.rb, line 1893
def duration6_estimated
  get_boolean_value(attribute_values['duration6_estimated'])
end
duration6_units() click to toggle source

Retrieve the Duration6 Units value

@return Duration6 Units value

# File lib/mpxj/task_methods.rb, line 1900
def duration6_units
  attribute_values['duration6_units']
end
duration7() click to toggle source

Retrieve the Duration7 value

@return Duration7 value

# File lib/mpxj/task_methods.rb, line 1907
def duration7
  get_duration_value(attribute_values['duration7'])
end
duration7_estimated() click to toggle source

Retrieve the Duration7 Estimated value

@return Duration7 Estimated value

# File lib/mpxj/task_methods.rb, line 1914
def duration7_estimated
  get_boolean_value(attribute_values['duration7_estimated'])
end
duration7_units() click to toggle source

Retrieve the Duration7 Units value

@return Duration7 Units value

# File lib/mpxj/task_methods.rb, line 1921
def duration7_units
  attribute_values['duration7_units']
end
duration8() click to toggle source

Retrieve the Duration8 value

@return Duration8 value

# File lib/mpxj/task_methods.rb, line 1928
def duration8
  get_duration_value(attribute_values['duration8'])
end
duration8_estimated() click to toggle source

Retrieve the Duration8 Estimated value

@return Duration8 Estimated value

# File lib/mpxj/task_methods.rb, line 1935
def duration8_estimated
  get_boolean_value(attribute_values['duration8_estimated'])
end
duration8_units() click to toggle source

Retrieve the Duration8 Units value

@return Duration8 Units value

# File lib/mpxj/task_methods.rb, line 1942
def duration8_units
  attribute_values['duration8_units']
end
duration9() click to toggle source

Retrieve the Duration9 value

@return Duration9 value

# File lib/mpxj/task_methods.rb, line 1949
def duration9
  get_duration_value(attribute_values['duration9'])
end
duration9_estimated() click to toggle source

Retrieve the Duration9 Estimated value

@return Duration9 Estimated value

# File lib/mpxj/task_methods.rb, line 1956
def duration9_estimated
  get_boolean_value(attribute_values['duration9_estimated'])
end
duration9_units() click to toggle source

Retrieve the Duration9 Units value

@return Duration9 Units value

# File lib/mpxj/task_methods.rb, line 1963
def duration9_units
  attribute_values['duration9_units']
end
duration_text() click to toggle source

Retrieve the Duration value

@return Duration value

# File lib/mpxj/task_methods.rb, line 1970
def duration_text
  attribute_values['duration_text']
end
duration_units() click to toggle source

Retrieve the Duration Units value

@return Duration Units value

# File lib/mpxj/task_methods.rb, line 1977
def duration_units
  attribute_values['duration_units']
end
duration_variance() click to toggle source

Retrieve the Duration Variance value

@return Duration Variance value

# File lib/mpxj/task_methods.rb, line 1984
def duration_variance
  get_duration_value(attribute_values['duration_variance'])
end
eac() click to toggle source

Retrieve the EAC value

@return EAC value

# File lib/mpxj/task_methods.rb, line 1991
def eac
  get_float_value(attribute_values['eac'])
end
early_finish() click to toggle source

Retrieve the Early Finish value

@return Early Finish value

# File lib/mpxj/task_methods.rb, line 1998
def early_finish
  get_date_value(attribute_values['early_finish'])
end
early_start() click to toggle source

Retrieve the Early Start value

@return Early Start value

# File lib/mpxj/task_methods.rb, line 2005
def early_start
  get_date_value(attribute_values['early_start'])
end
earned_value_method() click to toggle source

Retrieve the Earned Value Method value

@return Earned Value Method value

# File lib/mpxj/task_methods.rb, line 2012
def earned_value_method
  attribute_values['earned_value_method']
end
effort_driven() click to toggle source

Retrieve the Effort Driven value

@return Effort Driven value

# File lib/mpxj/task_methods.rb, line 2019
def effort_driven
  get_boolean_value(attribute_values['effort_driven'])
end
enterprise_cost1() click to toggle source

Retrieve the Enterprise Cost1 value

@return Enterprise Cost1 value

# File lib/mpxj/task_methods.rb, line 2026
def enterprise_cost1
  get_float_value(attribute_values['enterprise_cost1'])
end
enterprise_cost10() click to toggle source

Retrieve the Enterprise Cost10 value

@return Enterprise Cost10 value

# File lib/mpxj/task_methods.rb, line 2033
def enterprise_cost10
  get_float_value(attribute_values['enterprise_cost10'])
end
enterprise_cost2() click to toggle source

Retrieve the Enterprise Cost2 value

@return Enterprise Cost2 value

# File lib/mpxj/task_methods.rb, line 2040
def enterprise_cost2
  get_float_value(attribute_values['enterprise_cost2'])
end
enterprise_cost3() click to toggle source

Retrieve the Enterprise Cost3 value

@return Enterprise Cost3 value

# File lib/mpxj/task_methods.rb, line 2047
def enterprise_cost3
  get_float_value(attribute_values['enterprise_cost3'])
end
enterprise_cost4() click to toggle source

Retrieve the Enterprise Cost4 value

@return Enterprise Cost4 value

# File lib/mpxj/task_methods.rb, line 2054
def enterprise_cost4
  get_float_value(attribute_values['enterprise_cost4'])
end
enterprise_cost5() click to toggle source

Retrieve the Enterprise Cost5 value

@return Enterprise Cost5 value

# File lib/mpxj/task_methods.rb, line 2061
def enterprise_cost5
  get_float_value(attribute_values['enterprise_cost5'])
end
enterprise_cost6() click to toggle source

Retrieve the Enterprise Cost6 value

@return Enterprise Cost6 value

# File lib/mpxj/task_methods.rb, line 2068
def enterprise_cost6
  get_float_value(attribute_values['enterprise_cost6'])
end
enterprise_cost7() click to toggle source

Retrieve the Enterprise Cost7 value

@return Enterprise Cost7 value

# File lib/mpxj/task_methods.rb, line 2075
def enterprise_cost7
  get_float_value(attribute_values['enterprise_cost7'])
end
enterprise_cost8() click to toggle source

Retrieve the Enterprise Cost8 value

@return Enterprise Cost8 value

# File lib/mpxj/task_methods.rb, line 2082
def enterprise_cost8
  get_float_value(attribute_values['enterprise_cost8'])
end
enterprise_cost9() click to toggle source

Retrieve the Enterprise Cost9 value

@return Enterprise Cost9 value

# File lib/mpxj/task_methods.rb, line 2089
def enterprise_cost9
  get_float_value(attribute_values['enterprise_cost9'])
end
enterprise_data() click to toggle source

Retrieve the Enterprise Data value

@return Enterprise Data value

# File lib/mpxj/task_methods.rb, line 2096
def enterprise_data
  attribute_values['enterprise_data']
end
enterprise_date1() click to toggle source

Retrieve the Enterprise Date1 value

@return Enterprise Date1 value

# File lib/mpxj/task_methods.rb, line 2103
def enterprise_date1
  get_date_value(attribute_values['enterprise_date1'])
end
enterprise_date10() click to toggle source

Retrieve the Enterprise Date10 value

@return Enterprise Date10 value

# File lib/mpxj/task_methods.rb, line 2110
def enterprise_date10
  get_date_value(attribute_values['enterprise_date10'])
end
enterprise_date11() click to toggle source

Retrieve the Enterprise Date11 value

@return Enterprise Date11 value

# File lib/mpxj/task_methods.rb, line 2117
def enterprise_date11
  get_date_value(attribute_values['enterprise_date11'])
end
enterprise_date12() click to toggle source

Retrieve the Enterprise Date12 value

@return Enterprise Date12 value

# File lib/mpxj/task_methods.rb, line 2124
def enterprise_date12
  get_date_value(attribute_values['enterprise_date12'])
end
enterprise_date13() click to toggle source

Retrieve the Enterprise Date13 value

@return Enterprise Date13 value

# File lib/mpxj/task_methods.rb, line 2131
def enterprise_date13
  get_date_value(attribute_values['enterprise_date13'])
end
enterprise_date14() click to toggle source

Retrieve the Enterprise Date14 value

@return Enterprise Date14 value

# File lib/mpxj/task_methods.rb, line 2138
def enterprise_date14
  get_date_value(attribute_values['enterprise_date14'])
end
enterprise_date15() click to toggle source

Retrieve the Enterprise Date15 value

@return Enterprise Date15 value

# File lib/mpxj/task_methods.rb, line 2145
def enterprise_date15
  get_date_value(attribute_values['enterprise_date15'])
end
enterprise_date16() click to toggle source

Retrieve the Enterprise Date16 value

@return Enterprise Date16 value

# File lib/mpxj/task_methods.rb, line 2152
def enterprise_date16
  get_date_value(attribute_values['enterprise_date16'])
end
enterprise_date17() click to toggle source

Retrieve the Enterprise Date17 value

@return Enterprise Date17 value

# File lib/mpxj/task_methods.rb, line 2159
def enterprise_date17
  get_date_value(attribute_values['enterprise_date17'])
end
enterprise_date18() click to toggle source

Retrieve the Enterprise Date18 value

@return Enterprise Date18 value

# File lib/mpxj/task_methods.rb, line 2166
def enterprise_date18
  get_date_value(attribute_values['enterprise_date18'])
end
enterprise_date19() click to toggle source

Retrieve the Enterprise Date19 value

@return Enterprise Date19 value

# File lib/mpxj/task_methods.rb, line 2173
def enterprise_date19
  get_date_value(attribute_values['enterprise_date19'])
end
enterprise_date2() click to toggle source

Retrieve the Enterprise Date2 value

@return Enterprise Date2 value

# File lib/mpxj/task_methods.rb, line 2180
def enterprise_date2
  get_date_value(attribute_values['enterprise_date2'])
end
enterprise_date20() click to toggle source

Retrieve the Enterprise Date20 value

@return Enterprise Date20 value

# File lib/mpxj/task_methods.rb, line 2187
def enterprise_date20
  get_date_value(attribute_values['enterprise_date20'])
end
enterprise_date21() click to toggle source

Retrieve the Enterprise Date21 value

@return Enterprise Date21 value

# File lib/mpxj/task_methods.rb, line 2194
def enterprise_date21
  get_date_value(attribute_values['enterprise_date21'])
end
enterprise_date22() click to toggle source

Retrieve the Enterprise Date22 value

@return Enterprise Date22 value

# File lib/mpxj/task_methods.rb, line 2201
def enterprise_date22
  get_date_value(attribute_values['enterprise_date22'])
end
enterprise_date23() click to toggle source

Retrieve the Enterprise Date23 value

@return Enterprise Date23 value

# File lib/mpxj/task_methods.rb, line 2208
def enterprise_date23
  get_date_value(attribute_values['enterprise_date23'])
end
enterprise_date24() click to toggle source

Retrieve the Enterprise Date24 value

@return Enterprise Date24 value

# File lib/mpxj/task_methods.rb, line 2215
def enterprise_date24
  get_date_value(attribute_values['enterprise_date24'])
end
enterprise_date25() click to toggle source

Retrieve the Enterprise Date25 value

@return Enterprise Date25 value

# File lib/mpxj/task_methods.rb, line 2222
def enterprise_date25
  get_date_value(attribute_values['enterprise_date25'])
end
enterprise_date26() click to toggle source

Retrieve the Enterprise Date26 value

@return Enterprise Date26 value

# File lib/mpxj/task_methods.rb, line 2229
def enterprise_date26
  get_date_value(attribute_values['enterprise_date26'])
end
enterprise_date27() click to toggle source

Retrieve the Enterprise Date27 value

@return Enterprise Date27 value

# File lib/mpxj/task_methods.rb, line 2236
def enterprise_date27
  get_date_value(attribute_values['enterprise_date27'])
end
enterprise_date28() click to toggle source

Retrieve the Enterprise Date28 value

@return Enterprise Date28 value

# File lib/mpxj/task_methods.rb, line 2243
def enterprise_date28
  get_date_value(attribute_values['enterprise_date28'])
end
enterprise_date29() click to toggle source

Retrieve the Enterprise Date29 value

@return Enterprise Date29 value

# File lib/mpxj/task_methods.rb, line 2250
def enterprise_date29
  get_date_value(attribute_values['enterprise_date29'])
end
enterprise_date3() click to toggle source

Retrieve the Enterprise Date3 value

@return Enterprise Date3 value

# File lib/mpxj/task_methods.rb, line 2257
def enterprise_date3
  get_date_value(attribute_values['enterprise_date3'])
end
enterprise_date30() click to toggle source

Retrieve the Enterprise Date30 value

@return Enterprise Date30 value

# File lib/mpxj/task_methods.rb, line 2264
def enterprise_date30
  get_date_value(attribute_values['enterprise_date30'])
end
enterprise_date4() click to toggle source

Retrieve the Enterprise Date4 value

@return Enterprise Date4 value

# File lib/mpxj/task_methods.rb, line 2271
def enterprise_date4
  get_date_value(attribute_values['enterprise_date4'])
end
enterprise_date5() click to toggle source

Retrieve the Enterprise Date5 value

@return Enterprise Date5 value

# File lib/mpxj/task_methods.rb, line 2278
def enterprise_date5
  get_date_value(attribute_values['enterprise_date5'])
end
enterprise_date6() click to toggle source

Retrieve the Enterprise Date6 value

@return Enterprise Date6 value

# File lib/mpxj/task_methods.rb, line 2285
def enterprise_date6
  get_date_value(attribute_values['enterprise_date6'])
end
enterprise_date7() click to toggle source

Retrieve the Enterprise Date7 value

@return Enterprise Date7 value

# File lib/mpxj/task_methods.rb, line 2292
def enterprise_date7
  get_date_value(attribute_values['enterprise_date7'])
end
enterprise_date8() click to toggle source

Retrieve the Enterprise Date8 value

@return Enterprise Date8 value

# File lib/mpxj/task_methods.rb, line 2299
def enterprise_date8
  get_date_value(attribute_values['enterprise_date8'])
end
enterprise_date9() click to toggle source

Retrieve the Enterprise Date9 value

@return Enterprise Date9 value

# File lib/mpxj/task_methods.rb, line 2306
def enterprise_date9
  get_date_value(attribute_values['enterprise_date9'])
end
enterprise_duration1() click to toggle source

Retrieve the Enterprise Duration1 value

@return Enterprise Duration1 value

# File lib/mpxj/task_methods.rb, line 2313
def enterprise_duration1
  get_duration_value(attribute_values['enterprise_duration1'])
end
enterprise_duration10() click to toggle source

Retrieve the Enterprise Duration10 value

@return Enterprise Duration10 value

# File lib/mpxj/task_methods.rb, line 2320
def enterprise_duration10
  get_duration_value(attribute_values['enterprise_duration10'])
end
enterprise_duration10_units() click to toggle source

Retrieve the Enterprise Duration10 Units value

@return Enterprise Duration10 Units value

# File lib/mpxj/task_methods.rb, line 2327
def enterprise_duration10_units
  attribute_values['enterprise_duration10_units']
end
enterprise_duration1_units() click to toggle source

Retrieve the Enterprise Duration1 Units value

@return Enterprise Duration1 Units value

# File lib/mpxj/task_methods.rb, line 2334
def enterprise_duration1_units
  attribute_values['enterprise_duration1_units']
end
enterprise_duration2() click to toggle source

Retrieve the Enterprise Duration2 value

@return Enterprise Duration2 value

# File lib/mpxj/task_methods.rb, line 2341
def enterprise_duration2
  get_duration_value(attribute_values['enterprise_duration2'])
end
enterprise_duration2_units() click to toggle source

Retrieve the Enterprise Duration2 Units value

@return Enterprise Duration2 Units value

# File lib/mpxj/task_methods.rb, line 2348
def enterprise_duration2_units
  attribute_values['enterprise_duration2_units']
end
enterprise_duration3() click to toggle source

Retrieve the Enterprise Duration3 value

@return Enterprise Duration3 value

# File lib/mpxj/task_methods.rb, line 2355
def enterprise_duration3
  get_duration_value(attribute_values['enterprise_duration3'])
end
enterprise_duration3_units() click to toggle source

Retrieve the Enterprise Duration3 Units value

@return Enterprise Duration3 Units value

# File lib/mpxj/task_methods.rb, line 2362
def enterprise_duration3_units
  attribute_values['enterprise_duration3_units']
end
enterprise_duration4() click to toggle source

Retrieve the Enterprise Duration4 value

@return Enterprise Duration4 value

# File lib/mpxj/task_methods.rb, line 2369
def enterprise_duration4
  get_duration_value(attribute_values['enterprise_duration4'])
end
enterprise_duration4_units() click to toggle source

Retrieve the Enterprise Duration4 Units value

@return Enterprise Duration4 Units value

# File lib/mpxj/task_methods.rb, line 2376
def enterprise_duration4_units
  attribute_values['enterprise_duration4_units']
end
enterprise_duration5() click to toggle source

Retrieve the Enterprise Duration5 value

@return Enterprise Duration5 value

# File lib/mpxj/task_methods.rb, line 2383
def enterprise_duration5
  get_duration_value(attribute_values['enterprise_duration5'])
end
enterprise_duration5_units() click to toggle source

Retrieve the Enterprise Duration5 Units value

@return Enterprise Duration5 Units value

# File lib/mpxj/task_methods.rb, line 2390
def enterprise_duration5_units
  attribute_values['enterprise_duration5_units']
end
enterprise_duration6() click to toggle source

Retrieve the Enterprise Duration6 value

@return Enterprise Duration6 value

# File lib/mpxj/task_methods.rb, line 2397
def enterprise_duration6
  get_duration_value(attribute_values['enterprise_duration6'])
end
enterprise_duration6_units() click to toggle source

Retrieve the Enterprise Duration6 Units value

@return Enterprise Duration6 Units value

# File lib/mpxj/task_methods.rb, line 2404
def enterprise_duration6_units
  attribute_values['enterprise_duration6_units']
end
enterprise_duration7() click to toggle source

Retrieve the Enterprise Duration7 value

@return Enterprise Duration7 value

# File lib/mpxj/task_methods.rb, line 2411
def enterprise_duration7
  get_duration_value(attribute_values['enterprise_duration7'])
end
enterprise_duration7_units() click to toggle source

Retrieve the Enterprise Duration7 Units value

@return Enterprise Duration7 Units value

# File lib/mpxj/task_methods.rb, line 2418
def enterprise_duration7_units
  attribute_values['enterprise_duration7_units']
end
enterprise_duration8() click to toggle source

Retrieve the Enterprise Duration8 value

@return Enterprise Duration8 value

# File lib/mpxj/task_methods.rb, line 2425
def enterprise_duration8
  get_duration_value(attribute_values['enterprise_duration8'])
end
enterprise_duration8_units() click to toggle source

Retrieve the Enterprise Duration8 Units value

@return Enterprise Duration8 Units value

# File lib/mpxj/task_methods.rb, line 2432
def enterprise_duration8_units
  attribute_values['enterprise_duration8_units']
end
enterprise_duration9() click to toggle source

Retrieve the Enterprise Duration9 value

@return Enterprise Duration9 value

# File lib/mpxj/task_methods.rb, line 2439
def enterprise_duration9
  get_duration_value(attribute_values['enterprise_duration9'])
end
enterprise_duration9_units() click to toggle source

Retrieve the Enterprise Duration9 Units value

@return Enterprise Duration9 Units value

# File lib/mpxj/task_methods.rb, line 2446
def enterprise_duration9_units
  attribute_values['enterprise_duration9_units']
end
enterprise_flag1() click to toggle source

Retrieve the Enterprise Flag1 value

@return Enterprise Flag1 value

# File lib/mpxj/task_methods.rb, line 2453
def enterprise_flag1
  get_boolean_value(attribute_values['enterprise_flag1'])
end
enterprise_flag10() click to toggle source

Retrieve the Enterprise Flag10 value

@return Enterprise Flag10 value

# File lib/mpxj/task_methods.rb, line 2460
def enterprise_flag10
  get_boolean_value(attribute_values['enterprise_flag10'])
end
enterprise_flag11() click to toggle source

Retrieve the Enterprise Flag11 value

@return Enterprise Flag11 value

# File lib/mpxj/task_methods.rb, line 2467
def enterprise_flag11
  get_boolean_value(attribute_values['enterprise_flag11'])
end
enterprise_flag12() click to toggle source

Retrieve the Enterprise Flag12 value

@return Enterprise Flag12 value

# File lib/mpxj/task_methods.rb, line 2474
def enterprise_flag12
  get_boolean_value(attribute_values['enterprise_flag12'])
end
enterprise_flag13() click to toggle source

Retrieve the Enterprise Flag13 value

@return Enterprise Flag13 value

# File lib/mpxj/task_methods.rb, line 2481
def enterprise_flag13
  get_boolean_value(attribute_values['enterprise_flag13'])
end
enterprise_flag14() click to toggle source

Retrieve the Enterprise Flag14 value

@return Enterprise Flag14 value

# File lib/mpxj/task_methods.rb, line 2488
def enterprise_flag14
  get_boolean_value(attribute_values['enterprise_flag14'])
end
enterprise_flag15() click to toggle source

Retrieve the Enterprise Flag15 value

@return Enterprise Flag15 value

# File lib/mpxj/task_methods.rb, line 2495
def enterprise_flag15
  get_boolean_value(attribute_values['enterprise_flag15'])
end
enterprise_flag16() click to toggle source

Retrieve the Enterprise Flag16 value

@return Enterprise Flag16 value

# File lib/mpxj/task_methods.rb, line 2502
def enterprise_flag16
  get_boolean_value(attribute_values['enterprise_flag16'])
end
enterprise_flag17() click to toggle source

Retrieve the Enterprise Flag17 value

@return Enterprise Flag17 value

# File lib/mpxj/task_methods.rb, line 2509
def enterprise_flag17
  get_boolean_value(attribute_values['enterprise_flag17'])
end
enterprise_flag18() click to toggle source

Retrieve the Enterprise Flag18 value

@return Enterprise Flag18 value

# File lib/mpxj/task_methods.rb, line 2516
def enterprise_flag18
  get_boolean_value(attribute_values['enterprise_flag18'])
end
enterprise_flag19() click to toggle source

Retrieve the Enterprise Flag19 value

@return Enterprise Flag19 value

# File lib/mpxj/task_methods.rb, line 2523
def enterprise_flag19
  get_boolean_value(attribute_values['enterprise_flag19'])
end
enterprise_flag2() click to toggle source

Retrieve the Enterprise Flag2 value

@return Enterprise Flag2 value

# File lib/mpxj/task_methods.rb, line 2530
def enterprise_flag2
  get_boolean_value(attribute_values['enterprise_flag2'])
end
enterprise_flag20() click to toggle source

Retrieve the Enterprise Flag20 value

@return Enterprise Flag20 value

# File lib/mpxj/task_methods.rb, line 2537
def enterprise_flag20
  get_boolean_value(attribute_values['enterprise_flag20'])
end
enterprise_flag3() click to toggle source

Retrieve the Enterprise Flag3 value

@return Enterprise Flag3 value

# File lib/mpxj/task_methods.rb, line 2544
def enterprise_flag3
  get_boolean_value(attribute_values['enterprise_flag3'])
end
enterprise_flag4() click to toggle source

Retrieve the Enterprise Flag4 value

@return Enterprise Flag4 value

# File lib/mpxj/task_methods.rb, line 2551
def enterprise_flag4
  get_boolean_value(attribute_values['enterprise_flag4'])
end
enterprise_flag5() click to toggle source

Retrieve the Enterprise Flag5 value

@return Enterprise Flag5 value

# File lib/mpxj/task_methods.rb, line 2558
def enterprise_flag5
  get_boolean_value(attribute_values['enterprise_flag5'])
end
enterprise_flag6() click to toggle source

Retrieve the Enterprise Flag6 value

@return Enterprise Flag6 value

# File lib/mpxj/task_methods.rb, line 2565
def enterprise_flag6
  get_boolean_value(attribute_values['enterprise_flag6'])
end
enterprise_flag7() click to toggle source

Retrieve the Enterprise Flag7 value

@return Enterprise Flag7 value

# File lib/mpxj/task_methods.rb, line 2572
def enterprise_flag7
  get_boolean_value(attribute_values['enterprise_flag7'])
end
enterprise_flag8() click to toggle source

Retrieve the Enterprise Flag8 value

@return Enterprise Flag8 value

# File lib/mpxj/task_methods.rb, line 2579
def enterprise_flag8
  get_boolean_value(attribute_values['enterprise_flag8'])
end
enterprise_flag9() click to toggle source

Retrieve the Enterprise Flag9 value

@return Enterprise Flag9 value

# File lib/mpxj/task_methods.rb, line 2586
def enterprise_flag9
  get_boolean_value(attribute_values['enterprise_flag9'])
end
enterprise_number1() click to toggle source

Retrieve the Enterprise Number1 value

@return Enterprise Number1 value

# File lib/mpxj/task_methods.rb, line 2593
def enterprise_number1
  get_float_value(attribute_values['enterprise_number1'])
end
enterprise_number10() click to toggle source

Retrieve the Enterprise Number10 value

@return Enterprise Number10 value

# File lib/mpxj/task_methods.rb, line 2600
def enterprise_number10
  get_float_value(attribute_values['enterprise_number10'])
end
enterprise_number11() click to toggle source

Retrieve the Enterprise Number11 value

@return Enterprise Number11 value

# File lib/mpxj/task_methods.rb, line 2607
def enterprise_number11
  get_float_value(attribute_values['enterprise_number11'])
end
enterprise_number12() click to toggle source

Retrieve the Enterprise Number12 value

@return Enterprise Number12 value

# File lib/mpxj/task_methods.rb, line 2614
def enterprise_number12
  get_float_value(attribute_values['enterprise_number12'])
end
enterprise_number13() click to toggle source

Retrieve the Enterprise Number13 value

@return Enterprise Number13 value

# File lib/mpxj/task_methods.rb, line 2621
def enterprise_number13
  get_float_value(attribute_values['enterprise_number13'])
end
enterprise_number14() click to toggle source

Retrieve the Enterprise Number14 value

@return Enterprise Number14 value

# File lib/mpxj/task_methods.rb, line 2628
def enterprise_number14
  get_float_value(attribute_values['enterprise_number14'])
end
enterprise_number15() click to toggle source

Retrieve the Enterprise Number15 value

@return Enterprise Number15 value

# File lib/mpxj/task_methods.rb, line 2635
def enterprise_number15
  get_float_value(attribute_values['enterprise_number15'])
end
enterprise_number16() click to toggle source

Retrieve the Enterprise Number16 value

@return Enterprise Number16 value

# File lib/mpxj/task_methods.rb, line 2642
def enterprise_number16
  get_float_value(attribute_values['enterprise_number16'])
end
enterprise_number17() click to toggle source

Retrieve the Enterprise Number17 value

@return Enterprise Number17 value

# File lib/mpxj/task_methods.rb, line 2649
def enterprise_number17
  get_float_value(attribute_values['enterprise_number17'])
end
enterprise_number18() click to toggle source

Retrieve the Enterprise Number18 value

@return Enterprise Number18 value

# File lib/mpxj/task_methods.rb, line 2656
def enterprise_number18
  get_float_value(attribute_values['enterprise_number18'])
end
enterprise_number19() click to toggle source

Retrieve the Enterprise Number19 value

@return Enterprise Number19 value

# File lib/mpxj/task_methods.rb, line 2663
def enterprise_number19
  get_float_value(attribute_values['enterprise_number19'])
end
enterprise_number2() click to toggle source

Retrieve the Enterprise Number2 value

@return Enterprise Number2 value

# File lib/mpxj/task_methods.rb, line 2670
def enterprise_number2
  get_float_value(attribute_values['enterprise_number2'])
end
enterprise_number20() click to toggle source

Retrieve the Enterprise Number20 value

@return Enterprise Number20 value

# File lib/mpxj/task_methods.rb, line 2677
def enterprise_number20
  get_float_value(attribute_values['enterprise_number20'])
end
enterprise_number21() click to toggle source

Retrieve the Enterprise Number21 value

@return Enterprise Number21 value

# File lib/mpxj/task_methods.rb, line 2684
def enterprise_number21
  get_float_value(attribute_values['enterprise_number21'])
end
enterprise_number22() click to toggle source

Retrieve the Enterprise Number22 value

@return Enterprise Number22 value

# File lib/mpxj/task_methods.rb, line 2691
def enterprise_number22
  get_float_value(attribute_values['enterprise_number22'])
end
enterprise_number23() click to toggle source

Retrieve the Enterprise Number23 value

@return Enterprise Number23 value

# File lib/mpxj/task_methods.rb, line 2698
def enterprise_number23
  get_float_value(attribute_values['enterprise_number23'])
end
enterprise_number24() click to toggle source

Retrieve the Enterprise Number24 value

@return Enterprise Number24 value

# File lib/mpxj/task_methods.rb, line 2705
def enterprise_number24
  get_float_value(attribute_values['enterprise_number24'])
end
enterprise_number25() click to toggle source

Retrieve the Enterprise Number25 value

@return Enterprise Number25 value

# File lib/mpxj/task_methods.rb, line 2712
def enterprise_number25
  get_float_value(attribute_values['enterprise_number25'])
end
enterprise_number26() click to toggle source

Retrieve the Enterprise Number26 value

@return Enterprise Number26 value

# File lib/mpxj/task_methods.rb, line 2719
def enterprise_number26
  get_float_value(attribute_values['enterprise_number26'])
end
enterprise_number27() click to toggle source

Retrieve the Enterprise Number27 value

@return Enterprise Number27 value

# File lib/mpxj/task_methods.rb, line 2726
def enterprise_number27
  get_float_value(attribute_values['enterprise_number27'])
end
enterprise_number28() click to toggle source

Retrieve the Enterprise Number28 value

@return Enterprise Number28 value

# File lib/mpxj/task_methods.rb, line 2733
def enterprise_number28
  get_float_value(attribute_values['enterprise_number28'])
end
enterprise_number29() click to toggle source

Retrieve the Enterprise Number29 value

@return Enterprise Number29 value

# File lib/mpxj/task_methods.rb, line 2740
def enterprise_number29
  get_float_value(attribute_values['enterprise_number29'])
end
enterprise_number3() click to toggle source

Retrieve the Enterprise Number3 value

@return Enterprise Number3 value

# File lib/mpxj/task_methods.rb, line 2747
def enterprise_number3
  get_float_value(attribute_values['enterprise_number3'])
end
enterprise_number30() click to toggle source

Retrieve the Enterprise Number30 value

@return Enterprise Number30 value

# File lib/mpxj/task_methods.rb, line 2754
def enterprise_number30
  get_float_value(attribute_values['enterprise_number30'])
end
enterprise_number31() click to toggle source

Retrieve the Enterprise Number31 value

@return Enterprise Number31 value

# File lib/mpxj/task_methods.rb, line 2761
def enterprise_number31
  get_float_value(attribute_values['enterprise_number31'])
end
enterprise_number32() click to toggle source

Retrieve the Enterprise Number32 value

@return Enterprise Number32 value

# File lib/mpxj/task_methods.rb, line 2768
def enterprise_number32
  get_float_value(attribute_values['enterprise_number32'])
end
enterprise_number33() click to toggle source

Retrieve the Enterprise Number33 value

@return Enterprise Number33 value

# File lib/mpxj/task_methods.rb, line 2775
def enterprise_number33
  get_float_value(attribute_values['enterprise_number33'])
end
enterprise_number34() click to toggle source

Retrieve the Enterprise Number34 value

@return Enterprise Number34 value

# File lib/mpxj/task_methods.rb, line 2782
def enterprise_number34
  get_float_value(attribute_values['enterprise_number34'])
end
enterprise_number35() click to toggle source

Retrieve the Enterprise Number35 value

@return Enterprise Number35 value

# File lib/mpxj/task_methods.rb, line 2789
def enterprise_number35
  get_float_value(attribute_values['enterprise_number35'])
end
enterprise_number36() click to toggle source

Retrieve the Enterprise Number36 value

@return Enterprise Number36 value

# File lib/mpxj/task_methods.rb, line 2796
def enterprise_number36
  get_float_value(attribute_values['enterprise_number36'])
end
enterprise_number37() click to toggle source

Retrieve the Enterprise Number37 value

@return Enterprise Number37 value

# File lib/mpxj/task_methods.rb, line 2803
def enterprise_number37
  get_float_value(attribute_values['enterprise_number37'])
end
enterprise_number38() click to toggle source

Retrieve the Enterprise Number38 value

@return Enterprise Number38 value

# File lib/mpxj/task_methods.rb, line 2810
def enterprise_number38
  get_float_value(attribute_values['enterprise_number38'])
end
enterprise_number39() click to toggle source

Retrieve the Enterprise Number39 value

@return Enterprise Number39 value

# File lib/mpxj/task_methods.rb, line 2817
def enterprise_number39
  get_float_value(attribute_values['enterprise_number39'])
end
enterprise_number4() click to toggle source

Retrieve the Enterprise Number4 value

@return Enterprise Number4 value

# File lib/mpxj/task_methods.rb, line 2824
def enterprise_number4
  get_float_value(attribute_values['enterprise_number4'])
end
enterprise_number40() click to toggle source

Retrieve the Enterprise Number40 value

@return Enterprise Number40 value

# File lib/mpxj/task_methods.rb, line 2831
def enterprise_number40
  get_float_value(attribute_values['enterprise_number40'])
end
enterprise_number5() click to toggle source

Retrieve the Enterprise Number5 value

@return Enterprise Number5 value

# File lib/mpxj/task_methods.rb, line 2838
def enterprise_number5
  get_float_value(attribute_values['enterprise_number5'])
end
enterprise_number6() click to toggle source

Retrieve the Enterprise Number6 value

@return Enterprise Number6 value

# File lib/mpxj/task_methods.rb, line 2845
def enterprise_number6
  get_float_value(attribute_values['enterprise_number6'])
end
enterprise_number7() click to toggle source

Retrieve the Enterprise Number7 value

@return Enterprise Number7 value

# File lib/mpxj/task_methods.rb, line 2852
def enterprise_number7
  get_float_value(attribute_values['enterprise_number7'])
end
enterprise_number8() click to toggle source

Retrieve the Enterprise Number8 value

@return Enterprise Number8 value

# File lib/mpxj/task_methods.rb, line 2859
def enterprise_number8
  get_float_value(attribute_values['enterprise_number8'])
end
enterprise_number9() click to toggle source

Retrieve the Enterprise Number9 value

@return Enterprise Number9 value

# File lib/mpxj/task_methods.rb, line 2866
def enterprise_number9
  get_float_value(attribute_values['enterprise_number9'])
end
enterprise_outline_code1() click to toggle source

Retrieve the Enterprise Outline Code1 value

@return Enterprise Outline Code1 value

# File lib/mpxj/task_methods.rb, line 2873
def enterprise_outline_code1
  attribute_values['enterprise_outline_code1']
end
enterprise_outline_code10() click to toggle source

Retrieve the Enterprise Outline Code10 value

@return Enterprise Outline Code10 value

# File lib/mpxj/task_methods.rb, line 2880
def enterprise_outline_code10
  attribute_values['enterprise_outline_code10']
end
enterprise_outline_code11() click to toggle source

Retrieve the Enterprise Outline Code11 value

@return Enterprise Outline Code11 value

# File lib/mpxj/task_methods.rb, line 2887
def enterprise_outline_code11
  attribute_values['enterprise_outline_code11']
end
enterprise_outline_code12() click to toggle source

Retrieve the Enterprise Outline Code12 value

@return Enterprise Outline Code12 value

# File lib/mpxj/task_methods.rb, line 2894
def enterprise_outline_code12
  attribute_values['enterprise_outline_code12']
end
enterprise_outline_code13() click to toggle source

Retrieve the Enterprise Outline Code13 value

@return Enterprise Outline Code13 value

# File lib/mpxj/task_methods.rb, line 2901
def enterprise_outline_code13
  attribute_values['enterprise_outline_code13']
end
enterprise_outline_code14() click to toggle source

Retrieve the Enterprise Outline Code14 value

@return Enterprise Outline Code14 value

# File lib/mpxj/task_methods.rb, line 2908
def enterprise_outline_code14
  attribute_values['enterprise_outline_code14']
end
enterprise_outline_code15() click to toggle source

Retrieve the Enterprise Outline Code15 value

@return Enterprise Outline Code15 value

# File lib/mpxj/task_methods.rb, line 2915
def enterprise_outline_code15
  attribute_values['enterprise_outline_code15']
end
enterprise_outline_code16() click to toggle source

Retrieve the Enterprise Outline Code16 value

@return Enterprise Outline Code16 value

# File lib/mpxj/task_methods.rb, line 2922
def enterprise_outline_code16
  attribute_values['enterprise_outline_code16']
end
enterprise_outline_code17() click to toggle source

Retrieve the Enterprise Outline Code17 value

@return Enterprise Outline Code17 value

# File lib/mpxj/task_methods.rb, line 2929
def enterprise_outline_code17
  attribute_values['enterprise_outline_code17']
end
enterprise_outline_code18() click to toggle source

Retrieve the Enterprise Outline Code18 value

@return Enterprise Outline Code18 value

# File lib/mpxj/task_methods.rb, line 2936
def enterprise_outline_code18
  attribute_values['enterprise_outline_code18']
end
enterprise_outline_code19() click to toggle source

Retrieve the Enterprise Outline Code19 value

@return Enterprise Outline Code19 value

# File lib/mpxj/task_methods.rb, line 2943
def enterprise_outline_code19
  attribute_values['enterprise_outline_code19']
end
enterprise_outline_code2() click to toggle source

Retrieve the Enterprise Outline Code2 value

@return Enterprise Outline Code2 value

# File lib/mpxj/task_methods.rb, line 2950
def enterprise_outline_code2
  attribute_values['enterprise_outline_code2']
end
enterprise_outline_code20() click to toggle source

Retrieve the Enterprise Outline Code20 value

@return Enterprise Outline Code20 value

# File lib/mpxj/task_methods.rb, line 2957
def enterprise_outline_code20
  attribute_values['enterprise_outline_code20']
end
enterprise_outline_code21() click to toggle source

Retrieve the Enterprise Outline Code21 value

@return Enterprise Outline Code21 value

# File lib/mpxj/task_methods.rb, line 2964
def enterprise_outline_code21
  attribute_values['enterprise_outline_code21']
end
enterprise_outline_code22() click to toggle source

Retrieve the Enterprise Outline Code22 value

@return Enterprise Outline Code22 value

# File lib/mpxj/task_methods.rb, line 2971
def enterprise_outline_code22
  attribute_values['enterprise_outline_code22']
end
enterprise_outline_code23() click to toggle source

Retrieve the Enterprise Outline Code23 value

@return Enterprise Outline Code23 value

# File lib/mpxj/task_methods.rb, line 2978
def enterprise_outline_code23
  attribute_values['enterprise_outline_code23']
end
enterprise_outline_code24() click to toggle source

Retrieve the Enterprise Outline Code24 value

@return Enterprise Outline Code24 value

# File lib/mpxj/task_methods.rb, line 2985
def enterprise_outline_code24
  attribute_values['enterprise_outline_code24']
end
enterprise_outline_code25() click to toggle source

Retrieve the Enterprise Outline Code25 value

@return Enterprise Outline Code25 value

# File lib/mpxj/task_methods.rb, line 2992
def enterprise_outline_code25
  attribute_values['enterprise_outline_code25']
end
enterprise_outline_code26() click to toggle source

Retrieve the Enterprise Outline Code26 value

@return Enterprise Outline Code26 value

# File lib/mpxj/task_methods.rb, line 2999
def enterprise_outline_code26
  attribute_values['enterprise_outline_code26']
end
enterprise_outline_code27() click to toggle source

Retrieve the Enterprise Outline Code27 value

@return Enterprise Outline Code27 value

# File lib/mpxj/task_methods.rb, line 3006
def enterprise_outline_code27
  attribute_values['enterprise_outline_code27']
end
enterprise_outline_code28() click to toggle source

Retrieve the Enterprise Outline Code28 value

@return Enterprise Outline Code28 value

# File lib/mpxj/task_methods.rb, line 3013
def enterprise_outline_code28
  attribute_values['enterprise_outline_code28']
end
enterprise_outline_code29() click to toggle source

Retrieve the Enterprise Outline Code29 value

@return Enterprise Outline Code29 value

# File lib/mpxj/task_methods.rb, line 3020
def enterprise_outline_code29
  attribute_values['enterprise_outline_code29']
end
enterprise_outline_code3() click to toggle source

Retrieve the Enterprise Outline Code3 value

@return Enterprise Outline Code3 value

# File lib/mpxj/task_methods.rb, line 3027
def enterprise_outline_code3
  attribute_values['enterprise_outline_code3']
end
enterprise_outline_code30() click to toggle source

Retrieve the Enterprise Outline Code30 value

@return Enterprise Outline Code30 value

# File lib/mpxj/task_methods.rb, line 3034
def enterprise_outline_code30
  attribute_values['enterprise_outline_code30']
end
enterprise_outline_code4() click to toggle source

Retrieve the Enterprise Outline Code4 value

@return Enterprise Outline Code4 value

# File lib/mpxj/task_methods.rb, line 3041
def enterprise_outline_code4
  attribute_values['enterprise_outline_code4']
end
enterprise_outline_code5() click to toggle source

Retrieve the Enterprise Outline Code5 value

@return Enterprise Outline Code5 value

# File lib/mpxj/task_methods.rb, line 3048
def enterprise_outline_code5
  attribute_values['enterprise_outline_code5']
end
enterprise_outline_code6() click to toggle source

Retrieve the Enterprise Outline Code6 value

@return Enterprise Outline Code6 value

# File lib/mpxj/task_methods.rb, line 3055
def enterprise_outline_code6
  attribute_values['enterprise_outline_code6']
end
enterprise_outline_code7() click to toggle source

Retrieve the Enterprise Outline Code7 value

@return Enterprise Outline Code7 value

# File lib/mpxj/task_methods.rb, line 3062
def enterprise_outline_code7
  attribute_values['enterprise_outline_code7']
end
enterprise_outline_code8() click to toggle source

Retrieve the Enterprise Outline Code8 value

@return Enterprise Outline Code8 value

# File lib/mpxj/task_methods.rb, line 3069
def enterprise_outline_code8
  attribute_values['enterprise_outline_code8']
end
enterprise_outline_code9() click to toggle source

Retrieve the Enterprise Outline Code9 value

@return Enterprise Outline Code9 value

# File lib/mpxj/task_methods.rb, line 3076
def enterprise_outline_code9
  attribute_values['enterprise_outline_code9']
end
enterprise_project_cost1() click to toggle source

Retrieve the Enterprise Project Cost1 value

@return Enterprise Project Cost1 value

# File lib/mpxj/task_methods.rb, line 3083
def enterprise_project_cost1
  get_float_value(attribute_values['enterprise_project_cost1'])
end
enterprise_project_cost10() click to toggle source

Retrieve the Enterprise Project Cost10 value

@return Enterprise Project Cost10 value

# File lib/mpxj/task_methods.rb, line 3090
def enterprise_project_cost10
  get_float_value(attribute_values['enterprise_project_cost10'])
end
enterprise_project_cost2() click to toggle source

Retrieve the Enterprise Project Cost2 value

@return Enterprise Project Cost2 value

# File lib/mpxj/task_methods.rb, line 3097
def enterprise_project_cost2
  get_float_value(attribute_values['enterprise_project_cost2'])
end
enterprise_project_cost3() click to toggle source

Retrieve the Enterprise Project Cost3 value

@return Enterprise Project Cost3 value

# File lib/mpxj/task_methods.rb, line 3104
def enterprise_project_cost3
  get_float_value(attribute_values['enterprise_project_cost3'])
end
enterprise_project_cost4() click to toggle source

Retrieve the Enterprise Project Cost4 value

@return Enterprise Project Cost4 value

# File lib/mpxj/task_methods.rb, line 3111
def enterprise_project_cost4
  get_float_value(attribute_values['enterprise_project_cost4'])
end
enterprise_project_cost5() click to toggle source

Retrieve the Enterprise Project Cost5 value

@return Enterprise Project Cost5 value

# File lib/mpxj/task_methods.rb, line 3118
def enterprise_project_cost5
  get_float_value(attribute_values['enterprise_project_cost5'])
end
enterprise_project_cost6() click to toggle source

Retrieve the Enterprise Project Cost6 value

@return Enterprise Project Cost6 value

# File lib/mpxj/task_methods.rb, line 3125
def enterprise_project_cost6
  get_float_value(attribute_values['enterprise_project_cost6'])
end
enterprise_project_cost7() click to toggle source

Retrieve the Enterprise Project Cost7 value

@return Enterprise Project Cost7 value

# File lib/mpxj/task_methods.rb, line 3132
def enterprise_project_cost7
  get_float_value(attribute_values['enterprise_project_cost7'])
end
enterprise_project_cost8() click to toggle source

Retrieve the Enterprise Project Cost8 value

@return Enterprise Project Cost8 value

# File lib/mpxj/task_methods.rb, line 3139
def enterprise_project_cost8
  get_float_value(attribute_values['enterprise_project_cost8'])
end
enterprise_project_cost9() click to toggle source

Retrieve the Enterprise Project Cost9 value

@return Enterprise Project Cost9 value

# File lib/mpxj/task_methods.rb, line 3146
def enterprise_project_cost9
  get_float_value(attribute_values['enterprise_project_cost9'])
end
enterprise_project_date1() click to toggle source

Retrieve the Enterprise Project Date1 value

@return Enterprise Project Date1 value

# File lib/mpxj/task_methods.rb, line 3153
def enterprise_project_date1
  get_date_value(attribute_values['enterprise_project_date1'])
end
enterprise_project_date10() click to toggle source

Retrieve the Enterprise Project Date10 value

@return Enterprise Project Date10 value

# File lib/mpxj/task_methods.rb, line 3160
def enterprise_project_date10
  get_date_value(attribute_values['enterprise_project_date10'])
end
enterprise_project_date11() click to toggle source

Retrieve the Enterprise Project Date11 value

@return Enterprise Project Date11 value

# File lib/mpxj/task_methods.rb, line 3167
def enterprise_project_date11
  get_date_value(attribute_values['enterprise_project_date11'])
end
enterprise_project_date12() click to toggle source

Retrieve the Enterprise Project Date12 value

@return Enterprise Project Date12 value

# File lib/mpxj/task_methods.rb, line 3174
def enterprise_project_date12
  get_date_value(attribute_values['enterprise_project_date12'])
end
enterprise_project_date13() click to toggle source

Retrieve the Enterprise Project Date13 value

@return Enterprise Project Date13 value

# File lib/mpxj/task_methods.rb, line 3181
def enterprise_project_date13
  get_date_value(attribute_values['enterprise_project_date13'])
end
enterprise_project_date14() click to toggle source

Retrieve the Enterprise Project Date14 value

@return Enterprise Project Date14 value

# File lib/mpxj/task_methods.rb, line 3188
def enterprise_project_date14
  get_date_value(attribute_values['enterprise_project_date14'])
end
enterprise_project_date15() click to toggle source

Retrieve the Enterprise Project Date15 value

@return Enterprise Project Date15 value

# File lib/mpxj/task_methods.rb, line 3195
def enterprise_project_date15
  get_date_value(attribute_values['enterprise_project_date15'])
end
enterprise_project_date16() click to toggle source

Retrieve the Enterprise Project Date16 value

@return Enterprise Project Date16 value

# File lib/mpxj/task_methods.rb, line 3202
def enterprise_project_date16
  get_date_value(attribute_values['enterprise_project_date16'])
end
enterprise_project_date17() click to toggle source

Retrieve the Enterprise Project Date17 value

@return Enterprise Project Date17 value

# File lib/mpxj/task_methods.rb, line 3209
def enterprise_project_date17
  get_date_value(attribute_values['enterprise_project_date17'])
end
enterprise_project_date18() click to toggle source

Retrieve the Enterprise Project Date18 value

@return Enterprise Project Date18 value

# File lib/mpxj/task_methods.rb, line 3216
def enterprise_project_date18
  get_date_value(attribute_values['enterprise_project_date18'])
end
enterprise_project_date19() click to toggle source

Retrieve the Enterprise Project Date19 value

@return Enterprise Project Date19 value

# File lib/mpxj/task_methods.rb, line 3223
def enterprise_project_date19
  get_date_value(attribute_values['enterprise_project_date19'])
end
enterprise_project_date2() click to toggle source

Retrieve the Enterprise Project Date2 value

@return Enterprise Project Date2 value

# File lib/mpxj/task_methods.rb, line 3230
def enterprise_project_date2
  get_date_value(attribute_values['enterprise_project_date2'])
end
enterprise_project_date20() click to toggle source

Retrieve the Enterprise Project Date20 value

@return Enterprise Project Date20 value

# File lib/mpxj/task_methods.rb, line 3237
def enterprise_project_date20
  get_date_value(attribute_values['enterprise_project_date20'])
end
enterprise_project_date21() click to toggle source

Retrieve the Enterprise Project Date21 value

@return Enterprise Project Date21 value

# File lib/mpxj/task_methods.rb, line 3244
def enterprise_project_date21
  get_date_value(attribute_values['enterprise_project_date21'])
end
enterprise_project_date22() click to toggle source

Retrieve the Enterprise Project Date22 value

@return Enterprise Project Date22 value

# File lib/mpxj/task_methods.rb, line 3251
def enterprise_project_date22
  get_date_value(attribute_values['enterprise_project_date22'])
end
enterprise_project_date23() click to toggle source

Retrieve the Enterprise Project Date23 value

@return Enterprise Project Date23 value

# File lib/mpxj/task_methods.rb, line 3258
def enterprise_project_date23
  get_date_value(attribute_values['enterprise_project_date23'])
end
enterprise_project_date24() click to toggle source

Retrieve the Enterprise Project Date24 value

@return Enterprise Project Date24 value

# File lib/mpxj/task_methods.rb, line 3265
def enterprise_project_date24
  get_date_value(attribute_values['enterprise_project_date24'])
end
enterprise_project_date25() click to toggle source

Retrieve the Enterprise Project Date25 value

@return Enterprise Project Date25 value

# File lib/mpxj/task_methods.rb, line 3272
def enterprise_project_date25
  get_date_value(attribute_values['enterprise_project_date25'])
end
enterprise_project_date26() click to toggle source

Retrieve the Enterprise Project Date26 value

@return Enterprise Project Date26 value

# File lib/mpxj/task_methods.rb, line 3279
def enterprise_project_date26
  get_date_value(attribute_values['enterprise_project_date26'])
end
enterprise_project_date27() click to toggle source

Retrieve the Enterprise Project Date27 value

@return Enterprise Project Date27 value

# File lib/mpxj/task_methods.rb, line 3286
def enterprise_project_date27
  get_date_value(attribute_values['enterprise_project_date27'])
end
enterprise_project_date28() click to toggle source

Retrieve the Enterprise Project Date28 value

@return Enterprise Project Date28 value

# File lib/mpxj/task_methods.rb, line 3293
def enterprise_project_date28
  get_date_value(attribute_values['enterprise_project_date28'])
end
enterprise_project_date29() click to toggle source

Retrieve the Enterprise Project Date29 value

@return Enterprise Project Date29 value

# File lib/mpxj/task_methods.rb, line 3300
def enterprise_project_date29
  get_date_value(attribute_values['enterprise_project_date29'])
end
enterprise_project_date3() click to toggle source

Retrieve the Enterprise Project Date3 value

@return Enterprise Project Date3 value

# File lib/mpxj/task_methods.rb, line 3307
def enterprise_project_date3
  get_date_value(attribute_values['enterprise_project_date3'])
end
enterprise_project_date30() click to toggle source

Retrieve the Enterprise Project Date30 value

@return Enterprise Project Date30 value

# File lib/mpxj/task_methods.rb, line 3314
def enterprise_project_date30
  get_date_value(attribute_values['enterprise_project_date30'])
end
enterprise_project_date4() click to toggle source

Retrieve the Enterprise Project Date4 value

@return Enterprise Project Date4 value

# File lib/mpxj/task_methods.rb, line 3321
def enterprise_project_date4
  get_date_value(attribute_values['enterprise_project_date4'])
end
enterprise_project_date5() click to toggle source

Retrieve the Enterprise Project Date5 value

@return Enterprise Project Date5 value

# File lib/mpxj/task_methods.rb, line 3328
def enterprise_project_date5
  get_date_value(attribute_values['enterprise_project_date5'])
end
enterprise_project_date6() click to toggle source

Retrieve the Enterprise Project Date6 value

@return Enterprise Project Date6 value

# File lib/mpxj/task_methods.rb, line 3335
def enterprise_project_date6
  get_date_value(attribute_values['enterprise_project_date6'])
end
enterprise_project_date7() click to toggle source

Retrieve the Enterprise Project Date7 value

@return Enterprise Project Date7 value

# File lib/mpxj/task_methods.rb, line 3342
def enterprise_project_date7
  get_date_value(attribute_values['enterprise_project_date7'])
end
enterprise_project_date8() click to toggle source

Retrieve the Enterprise Project Date8 value

@return Enterprise Project Date8 value

# File lib/mpxj/task_methods.rb, line 3349
def enterprise_project_date8
  get_date_value(attribute_values['enterprise_project_date8'])
end
enterprise_project_date9() click to toggle source

Retrieve the Enterprise Project Date9 value

@return Enterprise Project Date9 value

# File lib/mpxj/task_methods.rb, line 3356
def enterprise_project_date9
  get_date_value(attribute_values['enterprise_project_date9'])
end
enterprise_project_duration1() click to toggle source

Retrieve the Enterprise Project Duration1 value

@return Enterprise Project Duration1 value

# File lib/mpxj/task_methods.rb, line 3363
def enterprise_project_duration1
  get_duration_value(attribute_values['enterprise_project_duration1'])
end
enterprise_project_duration10() click to toggle source

Retrieve the Enterprise Project Duration10 value

@return Enterprise Project Duration10 value

# File lib/mpxj/task_methods.rb, line 3370
def enterprise_project_duration10
  get_duration_value(attribute_values['enterprise_project_duration10'])
end
enterprise_project_duration2() click to toggle source

Retrieve the Enterprise Project Duration2 value

@return Enterprise Project Duration2 value

# File lib/mpxj/task_methods.rb, line 3377
def enterprise_project_duration2
  get_duration_value(attribute_values['enterprise_project_duration2'])
end
enterprise_project_duration3() click to toggle source

Retrieve the Enterprise Project Duration3 value

@return Enterprise Project Duration3 value

# File lib/mpxj/task_methods.rb, line 3384
def enterprise_project_duration3
  get_duration_value(attribute_values['enterprise_project_duration3'])
end
enterprise_project_duration4() click to toggle source

Retrieve the Enterprise Project Duration4 value

@return Enterprise Project Duration4 value

# File lib/mpxj/task_methods.rb, line 3391
def enterprise_project_duration4
  get_duration_value(attribute_values['enterprise_project_duration4'])
end
enterprise_project_duration5() click to toggle source

Retrieve the Enterprise Project Duration5 value

@return Enterprise Project Duration5 value

# File lib/mpxj/task_methods.rb, line 3398
def enterprise_project_duration5
  get_duration_value(attribute_values['enterprise_project_duration5'])
end
enterprise_project_duration6() click to toggle source

Retrieve the Enterprise Project Duration6 value

@return Enterprise Project Duration6 value

# File lib/mpxj/task_methods.rb, line 3405
def enterprise_project_duration6
  get_duration_value(attribute_values['enterprise_project_duration6'])
end
enterprise_project_duration7() click to toggle source

Retrieve the Enterprise Project Duration7 value

@return Enterprise Project Duration7 value

# File lib/mpxj/task_methods.rb, line 3412
def enterprise_project_duration7
  get_duration_value(attribute_values['enterprise_project_duration7'])
end
enterprise_project_duration8() click to toggle source

Retrieve the Enterprise Project Duration8 value

@return Enterprise Project Duration8 value

# File lib/mpxj/task_methods.rb, line 3419
def enterprise_project_duration8
  get_duration_value(attribute_values['enterprise_project_duration8'])
end
enterprise_project_duration9() click to toggle source

Retrieve the Enterprise Project Duration9 value

@return Enterprise Project Duration9 value

# File lib/mpxj/task_methods.rb, line 3426
def enterprise_project_duration9
  get_duration_value(attribute_values['enterprise_project_duration9'])
end
enterprise_project_flag1() click to toggle source

Retrieve the Enterprise Project Flag1 value

@return Enterprise Project Flag1 value

# File lib/mpxj/task_methods.rb, line 3433
def enterprise_project_flag1
  get_boolean_value(attribute_values['enterprise_project_flag1'])
end
enterprise_project_flag10() click to toggle source

Retrieve the Enterprise Project Flag10 value

@return Enterprise Project Flag10 value

# File lib/mpxj/task_methods.rb, line 3440
def enterprise_project_flag10
  get_boolean_value(attribute_values['enterprise_project_flag10'])
end
enterprise_project_flag11() click to toggle source

Retrieve the Enterprise Project Flag11 value

@return Enterprise Project Flag11 value

# File lib/mpxj/task_methods.rb, line 3447
def enterprise_project_flag11
  get_boolean_value(attribute_values['enterprise_project_flag11'])
end
enterprise_project_flag12() click to toggle source

Retrieve the Enterprise Project Flag12 value

@return Enterprise Project Flag12 value

# File lib/mpxj/task_methods.rb, line 3454
def enterprise_project_flag12
  get_boolean_value(attribute_values['enterprise_project_flag12'])
end
enterprise_project_flag13() click to toggle source

Retrieve the Enterprise Project Flag13 value

@return Enterprise Project Flag13 value

# File lib/mpxj/task_methods.rb, line 3461
def enterprise_project_flag13
  get_boolean_value(attribute_values['enterprise_project_flag13'])
end
enterprise_project_flag14() click to toggle source

Retrieve the Enterprise Project Flag14 value

@return Enterprise Project Flag14 value

# File lib/mpxj/task_methods.rb, line 3468
def enterprise_project_flag14
  get_boolean_value(attribute_values['enterprise_project_flag14'])
end
enterprise_project_flag15() click to toggle source

Retrieve the Enterprise Project Flag15 value

@return Enterprise Project Flag15 value

# File lib/mpxj/task_methods.rb, line 3475
def enterprise_project_flag15
  get_boolean_value(attribute_values['enterprise_project_flag15'])
end
enterprise_project_flag16() click to toggle source

Retrieve the Enterprise Project Flag16 value

@return Enterprise Project Flag16 value

# File lib/mpxj/task_methods.rb, line 3482
def enterprise_project_flag16
  get_boolean_value(attribute_values['enterprise_project_flag16'])
end
enterprise_project_flag17() click to toggle source

Retrieve the Enterprise Project Flag17 value

@return Enterprise Project Flag17 value

# File lib/mpxj/task_methods.rb, line 3489
def enterprise_project_flag17
  get_boolean_value(attribute_values['enterprise_project_flag17'])
end
enterprise_project_flag18() click to toggle source

Retrieve the Enterprise Project Flag18 value

@return Enterprise Project Flag18 value

# File lib/mpxj/task_methods.rb, line 3496
def enterprise_project_flag18
  get_boolean_value(attribute_values['enterprise_project_flag18'])
end
enterprise_project_flag19() click to toggle source

Retrieve the Enterprise Project Flag19 value

@return Enterprise Project Flag19 value

# File lib/mpxj/task_methods.rb, line 3503
def enterprise_project_flag19
  get_boolean_value(attribute_values['enterprise_project_flag19'])
end
enterprise_project_flag2() click to toggle source

Retrieve the Enterprise Project Flag2 value

@return Enterprise Project Flag2 value

# File lib/mpxj/task_methods.rb, line 3510
def enterprise_project_flag2
  get_boolean_value(attribute_values['enterprise_project_flag2'])
end
enterprise_project_flag20() click to toggle source

Retrieve the Enterprise Project Flag20 value

@return Enterprise Project Flag20 value

# File lib/mpxj/task_methods.rb, line 3517
def enterprise_project_flag20
  get_boolean_value(attribute_values['enterprise_project_flag20'])
end
enterprise_project_flag3() click to toggle source

Retrieve the Enterprise Project Flag3 value

@return Enterprise Project Flag3 value

# File lib/mpxj/task_methods.rb, line 3524
def enterprise_project_flag3
  get_boolean_value(attribute_values['enterprise_project_flag3'])
end
enterprise_project_flag4() click to toggle source

Retrieve the Enterprise Project Flag4 value

@return Enterprise Project Flag4 value

# File lib/mpxj/task_methods.rb, line 3531
def enterprise_project_flag4
  get_boolean_value(attribute_values['enterprise_project_flag4'])
end
enterprise_project_flag5() click to toggle source

Retrieve the Enterprise Project Flag5 value

@return Enterprise Project Flag5 value

# File lib/mpxj/task_methods.rb, line 3538
def enterprise_project_flag5
  get_boolean_value(attribute_values['enterprise_project_flag5'])
end
enterprise_project_flag6() click to toggle source

Retrieve the Enterprise Project Flag6 value

@return Enterprise Project Flag6 value

# File lib/mpxj/task_methods.rb, line 3545
def enterprise_project_flag6
  get_boolean_value(attribute_values['enterprise_project_flag6'])
end
enterprise_project_flag7() click to toggle source

Retrieve the Enterprise Project Flag7 value

@return Enterprise Project Flag7 value

# File lib/mpxj/task_methods.rb, line 3552
def enterprise_project_flag7
  get_boolean_value(attribute_values['enterprise_project_flag7'])
end
enterprise_project_flag8() click to toggle source

Retrieve the Enterprise Project Flag8 value

@return Enterprise Project Flag8 value

# File lib/mpxj/task_methods.rb, line 3559
def enterprise_project_flag8
  get_boolean_value(attribute_values['enterprise_project_flag8'])
end
enterprise_project_flag9() click to toggle source

Retrieve the Enterprise Project Flag9 value

@return Enterprise Project Flag9 value

# File lib/mpxj/task_methods.rb, line 3566
def enterprise_project_flag9
  get_boolean_value(attribute_values['enterprise_project_flag9'])
end
enterprise_project_number1() click to toggle source

Retrieve the Enterprise Project Number1 value

@return Enterprise Project Number1 value

# File lib/mpxj/task_methods.rb, line 3573
def enterprise_project_number1
  get_float_value(attribute_values['enterprise_project_number1'])
end
enterprise_project_number10() click to toggle source

Retrieve the Enterprise Project Number10 value

@return Enterprise Project Number10 value

# File lib/mpxj/task_methods.rb, line 3580
def enterprise_project_number10
  get_float_value(attribute_values['enterprise_project_number10'])
end
enterprise_project_number11() click to toggle source

Retrieve the Enterprise Project Number11 value

@return Enterprise Project Number11 value

# File lib/mpxj/task_methods.rb, line 3587
def enterprise_project_number11
  get_float_value(attribute_values['enterprise_project_number11'])
end
enterprise_project_number12() click to toggle source

Retrieve the Enterprise Project Number12 value

@return Enterprise Project Number12 value

# File lib/mpxj/task_methods.rb, line 3594
def enterprise_project_number12
  get_float_value(attribute_values['enterprise_project_number12'])
end
enterprise_project_number13() click to toggle source

Retrieve the Enterprise Project Number13 value

@return Enterprise Project Number13 value

# File lib/mpxj/task_methods.rb, line 3601
def enterprise_project_number13
  get_float_value(attribute_values['enterprise_project_number13'])
end
enterprise_project_number14() click to toggle source

Retrieve the Enterprise Project Number14 value

@return Enterprise Project Number14 value

# File lib/mpxj/task_methods.rb, line 3608
def enterprise_project_number14
  get_float_value(attribute_values['enterprise_project_number14'])
end
enterprise_project_number15() click to toggle source

Retrieve the Enterprise Project Number15 value

@return Enterprise Project Number15 value

# File lib/mpxj/task_methods.rb, line 3615
def enterprise_project_number15
  get_float_value(attribute_values['enterprise_project_number15'])
end
enterprise_project_number16() click to toggle source

Retrieve the Enterprise Project Number16 value

@return Enterprise Project Number16 value

# File lib/mpxj/task_methods.rb, line 3622
def enterprise_project_number16
  get_float_value(attribute_values['enterprise_project_number16'])
end
enterprise_project_number17() click to toggle source

Retrieve the Enterprise Project Number17 value

@return Enterprise Project Number17 value

# File lib/mpxj/task_methods.rb, line 3629
def enterprise_project_number17
  get_float_value(attribute_values['enterprise_project_number17'])
end
enterprise_project_number18() click to toggle source

Retrieve the Enterprise Project Number18 value

@return Enterprise Project Number18 value

# File lib/mpxj/task_methods.rb, line 3636
def enterprise_project_number18
  get_float_value(attribute_values['enterprise_project_number18'])
end
enterprise_project_number19() click to toggle source

Retrieve the Enterprise Project Number19 value

@return Enterprise Project Number19 value

# File lib/mpxj/task_methods.rb, line 3643
def enterprise_project_number19
  get_float_value(attribute_values['enterprise_project_number19'])
end
enterprise_project_number2() click to toggle source

Retrieve the Enterprise Project Number2 value

@return Enterprise Project Number2 value

# File lib/mpxj/task_methods.rb, line 3650
def enterprise_project_number2
  get_float_value(attribute_values['enterprise_project_number2'])
end
enterprise_project_number20() click to toggle source

Retrieve the Enterprise Project Number20 value

@return Enterprise Project Number20 value

# File lib/mpxj/task_methods.rb, line 3657
def enterprise_project_number20
  get_float_value(attribute_values['enterprise_project_number20'])
end
enterprise_project_number21() click to toggle source

Retrieve the Enterprise Project Number21 value

@return Enterprise Project Number21 value

# File lib/mpxj/task_methods.rb, line 3664
def enterprise_project_number21
  get_float_value(attribute_values['enterprise_project_number21'])
end
enterprise_project_number22() click to toggle source

Retrieve the Enterprise Project Number22 value

@return Enterprise Project Number22 value

# File lib/mpxj/task_methods.rb, line 3671
def enterprise_project_number22
  get_float_value(attribute_values['enterprise_project_number22'])
end
enterprise_project_number23() click to toggle source

Retrieve the Enterprise Project Number23 value

@return Enterprise Project Number23 value

# File lib/mpxj/task_methods.rb, line 3678
def enterprise_project_number23
  get_float_value(attribute_values['enterprise_project_number23'])
end
enterprise_project_number24() click to toggle source

Retrieve the Enterprise Project Number24 value

@return Enterprise Project Number24 value

# File lib/mpxj/task_methods.rb, line 3685
def enterprise_project_number24
  get_float_value(attribute_values['enterprise_project_number24'])
end
enterprise_project_number25() click to toggle source

Retrieve the Enterprise Project Number25 value

@return Enterprise Project Number25 value

# File lib/mpxj/task_methods.rb, line 3692
def enterprise_project_number25
  get_float_value(attribute_values['enterprise_project_number25'])
end
enterprise_project_number26() click to toggle source

Retrieve the Enterprise Project Number26 value

@return Enterprise Project Number26 value

# File lib/mpxj/task_methods.rb, line 3699
def enterprise_project_number26
  get_float_value(attribute_values['enterprise_project_number26'])
end
enterprise_project_number27() click to toggle source

Retrieve the Enterprise Project Number27 value

@return Enterprise Project Number27 value

# File lib/mpxj/task_methods.rb, line 3706
def enterprise_project_number27
  get_float_value(attribute_values['enterprise_project_number27'])
end
enterprise_project_number28() click to toggle source

Retrieve the Enterprise Project Number28 value

@return Enterprise Project Number28 value

# File lib/mpxj/task_methods.rb, line 3713
def enterprise_project_number28
  get_float_value(attribute_values['enterprise_project_number28'])
end
enterprise_project_number29() click to toggle source

Retrieve the Enterprise Project Number29 value

@return Enterprise Project Number29 value

# File lib/mpxj/task_methods.rb, line 3720
def enterprise_project_number29
  get_float_value(attribute_values['enterprise_project_number29'])
end
enterprise_project_number3() click to toggle source

Retrieve the Enterprise Project Number3 value

@return Enterprise Project Number3 value

# File lib/mpxj/task_methods.rb, line 3727
def enterprise_project_number3
  get_float_value(attribute_values['enterprise_project_number3'])
end
enterprise_project_number30() click to toggle source

Retrieve the Enterprise Project Number30 value

@return Enterprise Project Number30 value

# File lib/mpxj/task_methods.rb, line 3734
def enterprise_project_number30
  get_float_value(attribute_values['enterprise_project_number30'])
end
enterprise_project_number31() click to toggle source

Retrieve the Enterprise Project Number31 value

@return Enterprise Project Number31 value

# File lib/mpxj/task_methods.rb, line 3741
def enterprise_project_number31
  get_float_value(attribute_values['enterprise_project_number31'])
end
enterprise_project_number32() click to toggle source

Retrieve the Enterprise Project Number32 value

@return Enterprise Project Number32 value

# File lib/mpxj/task_methods.rb, line 3748
def enterprise_project_number32
  get_float_value(attribute_values['enterprise_project_number32'])
end
enterprise_project_number33() click to toggle source

Retrieve the Enterprise Project Number33 value

@return Enterprise Project Number33 value

# File lib/mpxj/task_methods.rb, line 3755
def enterprise_project_number33
  get_float_value(attribute_values['enterprise_project_number33'])
end
enterprise_project_number34() click to toggle source

Retrieve the Enterprise Project Number34 value

@return Enterprise Project Number34 value

# File lib/mpxj/task_methods.rb, line 3762
def enterprise_project_number34
  get_float_value(attribute_values['enterprise_project_number34'])
end
enterprise_project_number35() click to toggle source

Retrieve the Enterprise Project Number35 value

@return Enterprise Project Number35 value

# File lib/mpxj/task_methods.rb, line 3769
def enterprise_project_number35
  get_float_value(attribute_values['enterprise_project_number35'])
end
enterprise_project_number36() click to toggle source

Retrieve the Enterprise Project Number36 value

@return Enterprise Project Number36 value

# File lib/mpxj/task_methods.rb, line 3776
def enterprise_project_number36
  get_float_value(attribute_values['enterprise_project_number36'])
end
enterprise_project_number37() click to toggle source

Retrieve the Enterprise Project Number37 value

@return Enterprise Project Number37 value

# File lib/mpxj/task_methods.rb, line 3783
def enterprise_project_number37
  get_float_value(attribute_values['enterprise_project_number37'])
end
enterprise_project_number38() click to toggle source

Retrieve the Enterprise Project Number38 value

@return Enterprise Project Number38 value

# File lib/mpxj/task_methods.rb, line 3790
def enterprise_project_number38
  get_float_value(attribute_values['enterprise_project_number38'])
end
enterprise_project_number39() click to toggle source

Retrieve the Enterprise Project Number39 value

@return Enterprise Project Number39 value

# File lib/mpxj/task_methods.rb, line 3797
def enterprise_project_number39
  get_float_value(attribute_values['enterprise_project_number39'])
end
enterprise_project_number4() click to toggle source

Retrieve the Enterprise Project Number4 value

@return Enterprise Project Number4 value

# File lib/mpxj/task_methods.rb, line 3804
def enterprise_project_number4
  get_float_value(attribute_values['enterprise_project_number4'])
end
enterprise_project_number40() click to toggle source

Retrieve the Enterprise Project Number40 value

@return Enterprise Project Number40 value

# File lib/mpxj/task_methods.rb, line 3811
def enterprise_project_number40
  get_float_value(attribute_values['enterprise_project_number40'])
end
enterprise_project_number5() click to toggle source

Retrieve the Enterprise Project Number5 value

@return Enterprise Project Number5 value

# File lib/mpxj/task_methods.rb, line 3818
def enterprise_project_number5
  get_float_value(attribute_values['enterprise_project_number5'])
end
enterprise_project_number6() click to toggle source

Retrieve the Enterprise Project Number6 value

@return Enterprise Project Number6 value

# File lib/mpxj/task_methods.rb, line 3825
def enterprise_project_number6
  get_float_value(attribute_values['enterprise_project_number6'])
end
enterprise_project_number7() click to toggle source

Retrieve the Enterprise Project Number7 value

@return Enterprise Project Number7 value

# File lib/mpxj/task_methods.rb, line 3832
def enterprise_project_number7
  get_float_value(attribute_values['enterprise_project_number7'])
end
enterprise_project_number8() click to toggle source

Retrieve the Enterprise Project Number8 value

@return Enterprise Project Number8 value

# File lib/mpxj/task_methods.rb, line 3839
def enterprise_project_number8
  get_float_value(attribute_values['enterprise_project_number8'])
end
enterprise_project_number9() click to toggle source

Retrieve the Enterprise Project Number9 value

@return Enterprise Project Number9 value

# File lib/mpxj/task_methods.rb, line 3846
def enterprise_project_number9
  get_float_value(attribute_values['enterprise_project_number9'])
end
enterprise_project_outline_code1() click to toggle source

Retrieve the Enterprise Project Outline Code1 value

@return Enterprise Project Outline Code1 value

# File lib/mpxj/task_methods.rb, line 3853
def enterprise_project_outline_code1
  attribute_values['enterprise_project_outline_code1']
end
enterprise_project_outline_code10() click to toggle source

Retrieve the Enterprise Project Outline Code10 value

@return Enterprise Project Outline Code10 value

# File lib/mpxj/task_methods.rb, line 3860
def enterprise_project_outline_code10
  attribute_values['enterprise_project_outline_code10']
end
enterprise_project_outline_code11() click to toggle source

Retrieve the Enterprise Project Outline Code11 value

@return Enterprise Project Outline Code11 value

# File lib/mpxj/task_methods.rb, line 3867
def enterprise_project_outline_code11
  attribute_values['enterprise_project_outline_code11']
end
enterprise_project_outline_code12() click to toggle source

Retrieve the Enterprise Project Outline Code12 value

@return Enterprise Project Outline Code12 value

# File lib/mpxj/task_methods.rb, line 3874
def enterprise_project_outline_code12
  attribute_values['enterprise_project_outline_code12']
end
enterprise_project_outline_code13() click to toggle source

Retrieve the Enterprise Project Outline Code13 value

@return Enterprise Project Outline Code13 value

# File lib/mpxj/task_methods.rb, line 3881
def enterprise_project_outline_code13
  attribute_values['enterprise_project_outline_code13']
end
enterprise_project_outline_code14() click to toggle source

Retrieve the Enterprise Project Outline Code14 value

@return Enterprise Project Outline Code14 value

# File lib/mpxj/task_methods.rb, line 3888
def enterprise_project_outline_code14
  attribute_values['enterprise_project_outline_code14']
end
enterprise_project_outline_code15() click to toggle source

Retrieve the Enterprise Project Outline Code15 value

@return Enterprise Project Outline Code15 value

# File lib/mpxj/task_methods.rb, line 3895
def enterprise_project_outline_code15
  attribute_values['enterprise_project_outline_code15']
end
enterprise_project_outline_code16() click to toggle source

Retrieve the Enterprise Project Outline Code16 value

@return Enterprise Project Outline Code16 value

# File lib/mpxj/task_methods.rb, line 3902
def enterprise_project_outline_code16
  attribute_values['enterprise_project_outline_code16']
end
enterprise_project_outline_code17() click to toggle source

Retrieve the Enterprise Project Outline Code17 value

@return Enterprise Project Outline Code17 value

# File lib/mpxj/task_methods.rb, line 3909
def enterprise_project_outline_code17
  attribute_values['enterprise_project_outline_code17']
end
enterprise_project_outline_code18() click to toggle source

Retrieve the Enterprise Project Outline Code18 value

@return Enterprise Project Outline Code18 value

# File lib/mpxj/task_methods.rb, line 3916
def enterprise_project_outline_code18
  attribute_values['enterprise_project_outline_code18']
end
enterprise_project_outline_code19() click to toggle source

Retrieve the Enterprise Project Outline Code19 value

@return Enterprise Project Outline Code19 value

# File lib/mpxj/task_methods.rb, line 3923
def enterprise_project_outline_code19
  attribute_values['enterprise_project_outline_code19']
end
enterprise_project_outline_code2() click to toggle source

Retrieve the Enterprise Project Outline Code2 value

@return Enterprise Project Outline Code2 value

# File lib/mpxj/task_methods.rb, line 3930
def enterprise_project_outline_code2
  attribute_values['enterprise_project_outline_code2']
end
enterprise_project_outline_code20() click to toggle source

Retrieve the Enterprise Project Outline Code20 value

@return Enterprise Project Outline Code20 value

# File lib/mpxj/task_methods.rb, line 3937
def enterprise_project_outline_code20
  attribute_values['enterprise_project_outline_code20']
end
enterprise_project_outline_code21() click to toggle source

Retrieve the Enterprise Project Outline Code21 value

@return Enterprise Project Outline Code21 value

# File lib/mpxj/task_methods.rb, line 3944
def enterprise_project_outline_code21
  attribute_values['enterprise_project_outline_code21']
end
enterprise_project_outline_code22() click to toggle source

Retrieve the Enterprise Project Outline Code22 value

@return Enterprise Project Outline Code22 value

# File lib/mpxj/task_methods.rb, line 3951
def enterprise_project_outline_code22
  attribute_values['enterprise_project_outline_code22']
end
enterprise_project_outline_code23() click to toggle source

Retrieve the Enterprise Project Outline Code23 value

@return Enterprise Project Outline Code23 value

# File lib/mpxj/task_methods.rb, line 3958
def enterprise_project_outline_code23
  attribute_values['enterprise_project_outline_code23']
end
enterprise_project_outline_code24() click to toggle source

Retrieve the Enterprise Project Outline Code24 value

@return Enterprise Project Outline Code24 value

# File lib/mpxj/task_methods.rb, line 3965
def enterprise_project_outline_code24
  attribute_values['enterprise_project_outline_code24']
end
enterprise_project_outline_code25() click to toggle source

Retrieve the Enterprise Project Outline Code25 value

@return Enterprise Project Outline Code25 value

# File lib/mpxj/task_methods.rb, line 3972
def enterprise_project_outline_code25
  attribute_values['enterprise_project_outline_code25']
end
enterprise_project_outline_code26() click to toggle source

Retrieve the Enterprise Project Outline Code26 value

@return Enterprise Project Outline Code26 value

# File lib/mpxj/task_methods.rb, line 3979
def enterprise_project_outline_code26
  attribute_values['enterprise_project_outline_code26']
end
enterprise_project_outline_code27() click to toggle source

Retrieve the Enterprise Project Outline Code27 value

@return Enterprise Project Outline Code27 value

# File lib/mpxj/task_methods.rb, line 3986
def enterprise_project_outline_code27
  attribute_values['enterprise_project_outline_code27']
end
enterprise_project_outline_code28() click to toggle source

Retrieve the Enterprise Project Outline Code28 value

@return Enterprise Project Outline Code28 value

# File lib/mpxj/task_methods.rb, line 3993
def enterprise_project_outline_code28
  attribute_values['enterprise_project_outline_code28']
end
enterprise_project_outline_code29() click to toggle source

Retrieve the Enterprise Project Outline Code29 value

@return Enterprise Project Outline Code29 value

# File lib/mpxj/task_methods.rb, line 4000
def enterprise_project_outline_code29
  attribute_values['enterprise_project_outline_code29']
end
enterprise_project_outline_code3() click to toggle source

Retrieve the Enterprise Project Outline Code3 value

@return Enterprise Project Outline Code3 value

# File lib/mpxj/task_methods.rb, line 4007
def enterprise_project_outline_code3
  attribute_values['enterprise_project_outline_code3']
end
enterprise_project_outline_code30() click to toggle source

Retrieve the Enterprise Project Outline Code30 value

@return Enterprise Project Outline Code30 value

# File lib/mpxj/task_methods.rb, line 4014
def enterprise_project_outline_code30
  attribute_values['enterprise_project_outline_code30']
end
enterprise_project_outline_code4() click to toggle source

Retrieve the Enterprise Project Outline Code4 value

@return Enterprise Project Outline Code4 value

# File lib/mpxj/task_methods.rb, line 4021
def enterprise_project_outline_code4
  attribute_values['enterprise_project_outline_code4']
end
enterprise_project_outline_code5() click to toggle source

Retrieve the Enterprise Project Outline Code5 value

@return Enterprise Project Outline Code5 value

# File lib/mpxj/task_methods.rb, line 4028
def enterprise_project_outline_code5
  attribute_values['enterprise_project_outline_code5']
end
enterprise_project_outline_code6() click to toggle source

Retrieve the Enterprise Project Outline Code6 value

@return Enterprise Project Outline Code6 value

# File lib/mpxj/task_methods.rb, line 4035
def enterprise_project_outline_code6
  attribute_values['enterprise_project_outline_code6']
end
enterprise_project_outline_code7() click to toggle source

Retrieve the Enterprise Project Outline Code7 value

@return Enterprise Project Outline Code7 value

# File lib/mpxj/task_methods.rb, line 4042
def enterprise_project_outline_code7
  attribute_values['enterprise_project_outline_code7']
end
enterprise_project_outline_code8() click to toggle source

Retrieve the Enterprise Project Outline Code8 value

@return Enterprise Project Outline Code8 value

# File lib/mpxj/task_methods.rb, line 4049
def enterprise_project_outline_code8
  attribute_values['enterprise_project_outline_code8']
end
enterprise_project_outline_code9() click to toggle source

Retrieve the Enterprise Project Outline Code9 value

@return Enterprise Project Outline Code9 value

# File lib/mpxj/task_methods.rb, line 4056
def enterprise_project_outline_code9
  attribute_values['enterprise_project_outline_code9']
end
enterprise_project_text1() click to toggle source

Retrieve the Enterprise Project Text1 value

@return Enterprise Project Text1 value

# File lib/mpxj/task_methods.rb, line 4063
def enterprise_project_text1
  attribute_values['enterprise_project_text1']
end
enterprise_project_text10() click to toggle source

Retrieve the Enterprise Project Text10 value

@return Enterprise Project Text10 value

# File lib/mpxj/task_methods.rb, line 4070
def enterprise_project_text10
  attribute_values['enterprise_project_text10']
end
enterprise_project_text11() click to toggle source

Retrieve the Enterprise Project Text11 value

@return Enterprise Project Text11 value

# File lib/mpxj/task_methods.rb, line 4077
def enterprise_project_text11
  attribute_values['enterprise_project_text11']
end
enterprise_project_text12() click to toggle source

Retrieve the Enterprise Project Text12 value

@return Enterprise Project Text12 value

# File lib/mpxj/task_methods.rb, line 4084
def enterprise_project_text12
  attribute_values['enterprise_project_text12']
end
enterprise_project_text13() click to toggle source

Retrieve the Enterprise Project Text13 value

@return Enterprise Project Text13 value

# File lib/mpxj/task_methods.rb, line 4091
def enterprise_project_text13
  attribute_values['enterprise_project_text13']
end
enterprise_project_text14() click to toggle source

Retrieve the Enterprise Project Text14 value

@return Enterprise Project Text14 value

# File lib/mpxj/task_methods.rb, line 4098
def enterprise_project_text14
  attribute_values['enterprise_project_text14']
end
enterprise_project_text15() click to toggle source

Retrieve the Enterprise Project Text15 value

@return Enterprise Project Text15 value

# File lib/mpxj/task_methods.rb, line 4105
def enterprise_project_text15
  attribute_values['enterprise_project_text15']
end
enterprise_project_text16() click to toggle source

Retrieve the Enterprise Project Text16 value

@return Enterprise Project Text16 value

# File lib/mpxj/task_methods.rb, line 4112
def enterprise_project_text16
  attribute_values['enterprise_project_text16']
end
enterprise_project_text17() click to toggle source

Retrieve the Enterprise Project Text17 value

@return Enterprise Project Text17 value

# File lib/mpxj/task_methods.rb, line 4119
def enterprise_project_text17
  attribute_values['enterprise_project_text17']
end
enterprise_project_text18() click to toggle source

Retrieve the Enterprise Project Text18 value

@return Enterprise Project Text18 value

# File lib/mpxj/task_methods.rb, line 4126
def enterprise_project_text18
  attribute_values['enterprise_project_text18']
end
enterprise_project_text19() click to toggle source

Retrieve the Enterprise Project Text19 value

@return Enterprise Project Text19 value

# File lib/mpxj/task_methods.rb, line 4133
def enterprise_project_text19
  attribute_values['enterprise_project_text19']
end
enterprise_project_text2() click to toggle source

Retrieve the Enterprise Project Text2 value

@return Enterprise Project Text2 value

# File lib/mpxj/task_methods.rb, line 4140
def enterprise_project_text2
  attribute_values['enterprise_project_text2']
end
enterprise_project_text20() click to toggle source

Retrieve the Enterprise Project Text20 value

@return Enterprise Project Text20 value

# File lib/mpxj/task_methods.rb, line 4147
def enterprise_project_text20
  attribute_values['enterprise_project_text20']
end
enterprise_project_text21() click to toggle source

Retrieve the Enterprise Project Text21 value

@return Enterprise Project Text21 value

# File lib/mpxj/task_methods.rb, line 4154
def enterprise_project_text21
  attribute_values['enterprise_project_text21']
end
enterprise_project_text22() click to toggle source

Retrieve the Enterprise Project Text22 value

@return Enterprise Project Text22 value

# File lib/mpxj/task_methods.rb, line 4161
def enterprise_project_text22
  attribute_values['enterprise_project_text22']
end
enterprise_project_text23() click to toggle source

Retrieve the Enterprise Project Text23 value

@return Enterprise Project Text23 value

# File lib/mpxj/task_methods.rb, line 4168
def enterprise_project_text23
  attribute_values['enterprise_project_text23']
end
enterprise_project_text24() click to toggle source

Retrieve the Enterprise Project Text24 value

@return Enterprise Project Text24 value

# File lib/mpxj/task_methods.rb, line 4175
def enterprise_project_text24
  attribute_values['enterprise_project_text24']
end
enterprise_project_text25() click to toggle source

Retrieve the Enterprise Project Text25 value

@return Enterprise Project Text25 value

# File lib/mpxj/task_methods.rb, line 4182
def enterprise_project_text25
  attribute_values['enterprise_project_text25']
end
enterprise_project_text26() click to toggle source

Retrieve the Enterprise Project Text26 value

@return Enterprise Project Text26 value

# File lib/mpxj/task_methods.rb, line 4189
def enterprise_project_text26
  attribute_values['enterprise_project_text26']
end
enterprise_project_text27() click to toggle source

Retrieve the Enterprise Project Text27 value

@return Enterprise Project Text27 value

# File lib/mpxj/task_methods.rb, line 4196
def enterprise_project_text27
  attribute_values['enterprise_project_text27']
end
enterprise_project_text28() click to toggle source

Retrieve the Enterprise Project Text28 value

@return Enterprise Project Text28 value

# File lib/mpxj/task_methods.rb, line 4203
def enterprise_project_text28
  attribute_values['enterprise_project_text28']
end
enterprise_project_text29() click to toggle source

Retrieve the Enterprise Project Text29 value

@return Enterprise Project Text29 value

# File lib/mpxj/task_methods.rb, line 4210
def enterprise_project_text29
  attribute_values['enterprise_project_text29']
end
enterprise_project_text3() click to toggle source

Retrieve the Enterprise Project Text3 value

@return Enterprise Project Text3 value

# File lib/mpxj/task_methods.rb, line 4217
def enterprise_project_text3
  attribute_values['enterprise_project_text3']
end
enterprise_project_text30() click to toggle source

Retrieve the Enterprise Project Text30 value

@return Enterprise Project Text30 value

# File lib/mpxj/task_methods.rb, line 4224
def enterprise_project_text30
  attribute_values['enterprise_project_text30']
end
enterprise_project_text31() click to toggle source

Retrieve the Enterprise Project Text31 value

@return Enterprise Project Text31 value

# File lib/mpxj/task_methods.rb, line 4231
def enterprise_project_text31
  attribute_values['enterprise_project_text31']
end
enterprise_project_text32() click to toggle source

Retrieve the Enterprise Project Text32 value

@return Enterprise Project Text32 value

# File lib/mpxj/task_methods.rb, line 4238
def enterprise_project_text32
  attribute_values['enterprise_project_text32']
end
enterprise_project_text33() click to toggle source

Retrieve the Enterprise Project Text33 value

@return Enterprise Project Text33 value

# File lib/mpxj/task_methods.rb, line 4245
def enterprise_project_text33
  attribute_values['enterprise_project_text33']
end
enterprise_project_text34() click to toggle source

Retrieve the Enterprise Project Text34 value

@return Enterprise Project Text34 value

# File lib/mpxj/task_methods.rb, line 4252
def enterprise_project_text34
  attribute_values['enterprise_project_text34']
end
enterprise_project_text35() click to toggle source

Retrieve the Enterprise Project Text35 value

@return Enterprise Project Text35 value

# File lib/mpxj/task_methods.rb, line 4259
def enterprise_project_text35
  attribute_values['enterprise_project_text35']
end
enterprise_project_text36() click to toggle source

Retrieve the Enterprise Project Text36 value

@return Enterprise Project Text36 value

# File lib/mpxj/task_methods.rb, line 4266
def enterprise_project_text36
  attribute_values['enterprise_project_text36']
end
enterprise_project_text37() click to toggle source

Retrieve the Enterprise Project Text37 value

@return Enterprise Project Text37 value

# File lib/mpxj/task_methods.rb, line 4273
def enterprise_project_text37
  attribute_values['enterprise_project_text37']
end
enterprise_project_text38() click to toggle source

Retrieve the Enterprise Project Text38 value

@return Enterprise Project Text38 value

# File lib/mpxj/task_methods.rb, line 4280
def enterprise_project_text38
  attribute_values['enterprise_project_text38']
end
enterprise_project_text39() click to toggle source

Retrieve the Enterprise Project Text39 value

@return Enterprise Project Text39 value

# File lib/mpxj/task_methods.rb, line 4287
def enterprise_project_text39
  attribute_values['enterprise_project_text39']
end
enterprise_project_text4() click to toggle source

Retrieve the Enterprise Project Text4 value

@return Enterprise Project Text4 value

# File lib/mpxj/task_methods.rb, line 4294
def enterprise_project_text4
  attribute_values['enterprise_project_text4']
end
enterprise_project_text40() click to toggle source

Retrieve the Enterprise Project Text40 value

@return Enterprise Project Text40 value

# File lib/mpxj/task_methods.rb, line 4301
def enterprise_project_text40
  attribute_values['enterprise_project_text40']
end
enterprise_project_text5() click to toggle source

Retrieve the Enterprise Project Text5 value

@return Enterprise Project Text5 value

# File lib/mpxj/task_methods.rb, line 4308
def enterprise_project_text5
  attribute_values['enterprise_project_text5']
end
enterprise_project_text6() click to toggle source

Retrieve the Enterprise Project Text6 value

@return Enterprise Project Text6 value

# File lib/mpxj/task_methods.rb, line 4315
def enterprise_project_text6
  attribute_values['enterprise_project_text6']
end
enterprise_project_text7() click to toggle source

Retrieve the Enterprise Project Text7 value

@return Enterprise Project Text7 value

# File lib/mpxj/task_methods.rb, line 4322
def enterprise_project_text7
  attribute_values['enterprise_project_text7']
end
enterprise_project_text8() click to toggle source

Retrieve the Enterprise Project Text8 value

@return Enterprise Project Text8 value

# File lib/mpxj/task_methods.rb, line 4329
def enterprise_project_text8
  attribute_values['enterprise_project_text8']
end
enterprise_project_text9() click to toggle source

Retrieve the Enterprise Project Text9 value

@return Enterprise Project Text9 value

# File lib/mpxj/task_methods.rb, line 4336
def enterprise_project_text9
  attribute_values['enterprise_project_text9']
end
enterprise_text1() click to toggle source

Retrieve the Enterprise Text1 value

@return Enterprise Text1 value

# File lib/mpxj/task_methods.rb, line 4343
def enterprise_text1
  attribute_values['enterprise_text1']
end
enterprise_text10() click to toggle source

Retrieve the Enterprise Text10 value

@return Enterprise Text10 value

# File lib/mpxj/task_methods.rb, line 4350
def enterprise_text10
  attribute_values['enterprise_text10']
end
enterprise_text11() click to toggle source

Retrieve the Enterprise Text11 value

@return Enterprise Text11 value

# File lib/mpxj/task_methods.rb, line 4357
def enterprise_text11
  attribute_values['enterprise_text11']
end
enterprise_text12() click to toggle source

Retrieve the Enterprise Text12 value

@return Enterprise Text12 value

# File lib/mpxj/task_methods.rb, line 4364
def enterprise_text12
  attribute_values['enterprise_text12']
end
enterprise_text13() click to toggle source

Retrieve the Enterprise Text13 value

@return Enterprise Text13 value

# File lib/mpxj/task_methods.rb, line 4371
def enterprise_text13
  attribute_values['enterprise_text13']
end
enterprise_text14() click to toggle source

Retrieve the Enterprise Text14 value

@return Enterprise Text14 value

# File lib/mpxj/task_methods.rb, line 4378
def enterprise_text14
  attribute_values['enterprise_text14']
end
enterprise_text15() click to toggle source

Retrieve the Enterprise Text15 value

@return Enterprise Text15 value

# File lib/mpxj/task_methods.rb, line 4385
def enterprise_text15
  attribute_values['enterprise_text15']
end
enterprise_text16() click to toggle source

Retrieve the Enterprise Text16 value

@return Enterprise Text16 value

# File lib/mpxj/task_methods.rb, line 4392
def enterprise_text16
  attribute_values['enterprise_text16']
end
enterprise_text17() click to toggle source

Retrieve the Enterprise Text17 value

@return Enterprise Text17 value

# File lib/mpxj/task_methods.rb, line 4399
def enterprise_text17
  attribute_values['enterprise_text17']
end
enterprise_text18() click to toggle source

Retrieve the Enterprise Text18 value

@return Enterprise Text18 value

# File lib/mpxj/task_methods.rb, line 4406
def enterprise_text18
  attribute_values['enterprise_text18']
end
enterprise_text19() click to toggle source

Retrieve the Enterprise Text19 value

@return Enterprise Text19 value

# File lib/mpxj/task_methods.rb, line 4413
def enterprise_text19
  attribute_values['enterprise_text19']
end
enterprise_text2() click to toggle source

Retrieve the Enterprise Text2 value

@return Enterprise Text2 value

# File lib/mpxj/task_methods.rb, line 4420
def enterprise_text2
  attribute_values['enterprise_text2']
end
enterprise_text20() click to toggle source

Retrieve the Enterprise Text20 value

@return Enterprise Text20 value

# File lib/mpxj/task_methods.rb, line 4427
def enterprise_text20
  attribute_values['enterprise_text20']
end
enterprise_text21() click to toggle source

Retrieve the Enterprise Text21 value

@return Enterprise Text21 value

# File lib/mpxj/task_methods.rb, line 4434
def enterprise_text21
  attribute_values['enterprise_text21']
end
enterprise_text22() click to toggle source

Retrieve the Enterprise Text22 value

@return Enterprise Text22 value

# File lib/mpxj/task_methods.rb, line 4441
def enterprise_text22
  attribute_values['enterprise_text22']
end
enterprise_text23() click to toggle source

Retrieve the Enterprise Text23 value

@return Enterprise Text23 value

# File lib/mpxj/task_methods.rb, line 4448
def enterprise_text23
  attribute_values['enterprise_text23']
end
enterprise_text24() click to toggle source

Retrieve the Enterprise Text24 value

@return Enterprise Text24 value

# File lib/mpxj/task_methods.rb, line 4455
def enterprise_text24
  attribute_values['enterprise_text24']
end
enterprise_text25() click to toggle source

Retrieve the Enterprise Text25 value

@return Enterprise Text25 value

# File lib/mpxj/task_methods.rb, line 4462
def enterprise_text25
  attribute_values['enterprise_text25']
end
enterprise_text26() click to toggle source

Retrieve the Enterprise Text26 value

@return Enterprise Text26 value

# File lib/mpxj/task_methods.rb, line 4469
def enterprise_text26
  attribute_values['enterprise_text26']
end
enterprise_text27() click to toggle source

Retrieve the Enterprise Text27 value

@return Enterprise Text27 value

# File lib/mpxj/task_methods.rb, line 4476
def enterprise_text27
  attribute_values['enterprise_text27']
end
enterprise_text28() click to toggle source

Retrieve the Enterprise Text28 value

@return Enterprise Text28 value

# File lib/mpxj/task_methods.rb, line 4483
def enterprise_text28
  attribute_values['enterprise_text28']
end
enterprise_text29() click to toggle source

Retrieve the Enterprise Text29 value

@return Enterprise Text29 value

# File lib/mpxj/task_methods.rb, line 4490
def enterprise_text29
  attribute_values['enterprise_text29']
end
enterprise_text3() click to toggle source

Retrieve the Enterprise Text3 value

@return Enterprise Text3 value

# File lib/mpxj/task_methods.rb, line 4497
def enterprise_text3
  attribute_values['enterprise_text3']
end
enterprise_text30() click to toggle source

Retrieve the Enterprise Text30 value

@return Enterprise Text30 value

# File lib/mpxj/task_methods.rb, line 4504
def enterprise_text30
  attribute_values['enterprise_text30']
end
enterprise_text31() click to toggle source

Retrieve the Enterprise Text31 value

@return Enterprise Text31 value

# File lib/mpxj/task_methods.rb, line 4511
def enterprise_text31
  attribute_values['enterprise_text31']
end
enterprise_text32() click to toggle source

Retrieve the Enterprise Text32 value

@return Enterprise Text32 value

# File lib/mpxj/task_methods.rb, line 4518
def enterprise_text32
  attribute_values['enterprise_text32']
end
enterprise_text33() click to toggle source

Retrieve the Enterprise Text33 value

@return Enterprise Text33 value

# File lib/mpxj/task_methods.rb, line 4525
def enterprise_text33
  attribute_values['enterprise_text33']
end
enterprise_text34() click to toggle source

Retrieve the Enterprise Text34 value

@return Enterprise Text34 value

# File lib/mpxj/task_methods.rb, line 4532
def enterprise_text34
  attribute_values['enterprise_text34']
end
enterprise_text35() click to toggle source

Retrieve the Enterprise Text35 value

@return Enterprise Text35 value

# File lib/mpxj/task_methods.rb, line 4539
def enterprise_text35
  attribute_values['enterprise_text35']
end
enterprise_text36() click to toggle source

Retrieve the Enterprise Text36 value

@return Enterprise Text36 value

# File lib/mpxj/task_methods.rb, line 4546
def enterprise_text36
  attribute_values['enterprise_text36']
end
enterprise_text37() click to toggle source

Retrieve the Enterprise Text37 value

@return Enterprise Text37 value

# File lib/mpxj/task_methods.rb, line 4553
def enterprise_text37
  attribute_values['enterprise_text37']
end
enterprise_text38() click to toggle source

Retrieve the Enterprise Text38 value

@return Enterprise Text38 value

# File lib/mpxj/task_methods.rb, line 4560
def enterprise_text38
  attribute_values['enterprise_text38']
end
enterprise_text39() click to toggle source

Retrieve the Enterprise Text39 value

@return Enterprise Text39 value

# File lib/mpxj/task_methods.rb, line 4567
def enterprise_text39
  attribute_values['enterprise_text39']
end
enterprise_text4() click to toggle source

Retrieve the Enterprise Text4 value

@return Enterprise Text4 value

# File lib/mpxj/task_methods.rb, line 4574
def enterprise_text4
  attribute_values['enterprise_text4']
end
enterprise_text40() click to toggle source

Retrieve the Enterprise Text40 value

@return Enterprise Text40 value

# File lib/mpxj/task_methods.rb, line 4581
def enterprise_text40
  attribute_values['enterprise_text40']
end
enterprise_text5() click to toggle source

Retrieve the Enterprise Text5 value

@return Enterprise Text5 value

# File lib/mpxj/task_methods.rb, line 4588
def enterprise_text5
  attribute_values['enterprise_text5']
end
enterprise_text6() click to toggle source

Retrieve the Enterprise Text6 value

@return Enterprise Text6 value

# File lib/mpxj/task_methods.rb, line 4595
def enterprise_text6
  attribute_values['enterprise_text6']
end
enterprise_text7() click to toggle source

Retrieve the Enterprise Text7 value

@return Enterprise Text7 value

# File lib/mpxj/task_methods.rb, line 4602
def enterprise_text7
  attribute_values['enterprise_text7']
end
enterprise_text8() click to toggle source

Retrieve the Enterprise Text8 value

@return Enterprise Text8 value

# File lib/mpxj/task_methods.rb, line 4609
def enterprise_text8
  attribute_values['enterprise_text8']
end
enterprise_text9() click to toggle source

Retrieve the Enterprise Text9 value

@return Enterprise Text9 value

# File lib/mpxj/task_methods.rb, line 4616
def enterprise_text9
  attribute_values['enterprise_text9']
end
error_message() click to toggle source

Retrieve the Error Message value

@return Error Message value

# File lib/mpxj/task_methods.rb, line 4623
def error_message
  attribute_values['error_message']
end
estimated() click to toggle source

Retrieve the Estimated value

@return Estimated value

# File lib/mpxj/task_methods.rb, line 4630
def estimated
  get_boolean_value(attribute_values['estimated'])
end
expanded() click to toggle source

Retrieve the Expanded value

@return Expanded value

# File lib/mpxj/task_methods.rb, line 4637
def expanded
  get_boolean_value(attribute_values['expanded'])
end
expected_finish() click to toggle source

Retrieve the Expected Finish value

@return Expected Finish value

# File lib/mpxj/task_methods.rb, line 4644
def expected_finish
  get_date_value(attribute_values['expected_finish'])
end
expense_items() click to toggle source

Retrieve the Expense Items value

@return Expense Items value

# File lib/mpxj/task_methods.rb, line 4651
def expense_items
  attribute_values['expense_items']
end
external_early_start() click to toggle source

Retrieve the External Early Start value

@return External Early Start value

# File lib/mpxj/task_methods.rb, line 4658
def external_early_start
  get_date_value(attribute_values['external_early_start'])
end
external_late_finish() click to toggle source

Retrieve the External Late Finish value

@return External Late Finish value

# File lib/mpxj/task_methods.rb, line 4665
def external_late_finish
  get_date_value(attribute_values['external_late_finish'])
end
external_project() click to toggle source

Retrieve the External Project value

@return External Project value

# File lib/mpxj/task_methods.rb, line 4672
def external_project
  get_boolean_value(attribute_values['external_project'])
end
external_task() click to toggle source

Retrieve the External Task value

@return External Task value

# File lib/mpxj/task_methods.rb, line 4679
def external_task
  get_boolean_value(attribute_values['external_task'])
end
feature_of_work() click to toggle source

Retrieve the Feature of Work value

@return Feature of Work value

# File lib/mpxj/task_methods.rb, line 4686
def feature_of_work
  attribute_values['feature_of_work']
end
finish() click to toggle source

Retrieve the Finish value

@return Finish value

# File lib/mpxj/task_methods.rb, line 4693
def finish
  get_date_value(attribute_values['finish'])
end
finish1() click to toggle source

Retrieve the Finish1 value

@return Finish1 value

# File lib/mpxj/task_methods.rb, line 4700
def finish1
  get_date_value(attribute_values['finish1'])
end
finish10() click to toggle source

Retrieve the Finish10 value

@return Finish10 value

# File lib/mpxj/task_methods.rb, line 4707
def finish10
  get_date_value(attribute_values['finish10'])
end
finish2() click to toggle source

Retrieve the Finish2 value

@return Finish2 value

# File lib/mpxj/task_methods.rb, line 4714
def finish2
  get_date_value(attribute_values['finish2'])
end
finish3() click to toggle source

Retrieve the Finish3 value

@return Finish3 value

# File lib/mpxj/task_methods.rb, line 4721
def finish3
  get_date_value(attribute_values['finish3'])
end
finish4() click to toggle source

Retrieve the Finish4 value

@return Finish4 value

# File lib/mpxj/task_methods.rb, line 4728
def finish4
  get_date_value(attribute_values['finish4'])
end
finish5() click to toggle source

Retrieve the Finish5 value

@return Finish5 value

# File lib/mpxj/task_methods.rb, line 4735
def finish5
  get_date_value(attribute_values['finish5'])
end
finish6() click to toggle source

Retrieve the Finish6 value

@return Finish6 value

# File lib/mpxj/task_methods.rb, line 4742
def finish6
  get_date_value(attribute_values['finish6'])
end
finish7() click to toggle source

Retrieve the Finish7 value

@return Finish7 value

# File lib/mpxj/task_methods.rb, line 4749
def finish7
  get_date_value(attribute_values['finish7'])
end
finish8() click to toggle source

Retrieve the Finish8 value

@return Finish8 value

# File lib/mpxj/task_methods.rb, line 4756
def finish8
  get_date_value(attribute_values['finish8'])
end
finish9() click to toggle source

Retrieve the Finish9 value

@return Finish9 value

# File lib/mpxj/task_methods.rb, line 4763
def finish9
  get_date_value(attribute_values['finish9'])
end
finish_slack() click to toggle source

Retrieve the Finish Slack value

@return Finish Slack value

# File lib/mpxj/task_methods.rb, line 4770
def finish_slack
  get_duration_value(attribute_values['finish_slack'])
end
finish_text() click to toggle source

Retrieve the Finish value

@return Finish value

# File lib/mpxj/task_methods.rb, line 4777
def finish_text
  attribute_values['finish_text']
end
finish_variance() click to toggle source

Retrieve the Finish Variance value

@return Finish Variance value

# File lib/mpxj/task_methods.rb, line 4784
def finish_variance
  get_duration_value(attribute_values['finish_variance'])
end
fixed_cost() click to toggle source

Retrieve the Fixed Cost value

@return Fixed Cost value

# File lib/mpxj/task_methods.rb, line 4791
def fixed_cost
  get_float_value(attribute_values['fixed_cost'])
end
fixed_cost_accrual() click to toggle source

Retrieve the Fixed Cost Accrual value

@return Fixed Cost Accrual value

# File lib/mpxj/task_methods.rb, line 4798
def fixed_cost_accrual
  attribute_values['fixed_cost_accrual']
end
fixed_duration() click to toggle source

Retrieve the Fixed Duration value

@return Fixed Duration value

# File lib/mpxj/task_methods.rb, line 4805
def fixed_duration
  get_boolean_value(attribute_values['fixed_duration'])
end
flag1() click to toggle source

Retrieve the Flag1 value

@return Flag1 value

# File lib/mpxj/task_methods.rb, line 4812
def flag1
  get_boolean_value(attribute_values['flag1'])
end
flag10() click to toggle source

Retrieve the Flag10 value

@return Flag10 value

# File lib/mpxj/task_methods.rb, line 4819
def flag10
  get_boolean_value(attribute_values['flag10'])
end
flag11() click to toggle source

Retrieve the Flag11 value

@return Flag11 value

# File lib/mpxj/task_methods.rb, line 4826
def flag11
  get_boolean_value(attribute_values['flag11'])
end
flag12() click to toggle source

Retrieve the Flag12 value

@return Flag12 value

# File lib/mpxj/task_methods.rb, line 4833
def flag12
  get_boolean_value(attribute_values['flag12'])
end
flag13() click to toggle source

Retrieve the Flag13 value

@return Flag13 value

# File lib/mpxj/task_methods.rb, line 4840
def flag13
  get_boolean_value(attribute_values['flag13'])
end
flag14() click to toggle source

Retrieve the Flag14 value

@return Flag14 value

# File lib/mpxj/task_methods.rb, line 4847
def flag14
  get_boolean_value(attribute_values['flag14'])
end
flag15() click to toggle source

Retrieve the Flag15 value

@return Flag15 value

# File lib/mpxj/task_methods.rb, line 4854
def flag15
  get_boolean_value(attribute_values['flag15'])
end
flag16() click to toggle source

Retrieve the Flag16 value

@return Flag16 value

# File lib/mpxj/task_methods.rb, line 4861
def flag16
  get_boolean_value(attribute_values['flag16'])
end
flag17() click to toggle source

Retrieve the Flag17 value

@return Flag17 value

# File lib/mpxj/task_methods.rb, line 4868
def flag17
  get_boolean_value(attribute_values['flag17'])
end
flag18() click to toggle source

Retrieve the Flag18 value

@return Flag18 value

# File lib/mpxj/task_methods.rb, line 4875
def flag18
  get_boolean_value(attribute_values['flag18'])
end
flag19() click to toggle source

Retrieve the Flag19 value

@return Flag19 value

# File lib/mpxj/task_methods.rb, line 4882
def flag19
  get_boolean_value(attribute_values['flag19'])
end
flag2() click to toggle source

Retrieve the Flag2 value

@return Flag2 value

# File lib/mpxj/task_methods.rb, line 4889
def flag2
  get_boolean_value(attribute_values['flag2'])
end
flag20() click to toggle source

Retrieve the Flag20 value

@return Flag20 value

# File lib/mpxj/task_methods.rb, line 4896
def flag20
  get_boolean_value(attribute_values['flag20'])
end
flag3() click to toggle source

Retrieve the Flag3 value

@return Flag3 value

# File lib/mpxj/task_methods.rb, line 4903
def flag3
  get_boolean_value(attribute_values['flag3'])
end
flag4() click to toggle source

Retrieve the Flag4 value

@return Flag4 value

# File lib/mpxj/task_methods.rb, line 4910
def flag4
  get_boolean_value(attribute_values['flag4'])
end
flag5() click to toggle source

Retrieve the Flag5 value

@return Flag5 value

# File lib/mpxj/task_methods.rb, line 4917
def flag5
  get_boolean_value(attribute_values['flag5'])
end
flag6() click to toggle source

Retrieve the Flag6 value

@return Flag6 value

# File lib/mpxj/task_methods.rb, line 4924
def flag6
  get_boolean_value(attribute_values['flag6'])
end
flag7() click to toggle source

Retrieve the Flag7 value

@return Flag7 value

# File lib/mpxj/task_methods.rb, line 4931
def flag7
  get_boolean_value(attribute_values['flag7'])
end
flag8() click to toggle source

Retrieve the Flag8 value

@return Flag8 value

# File lib/mpxj/task_methods.rb, line 4938
def flag8
  get_boolean_value(attribute_values['flag8'])
end
flag9() click to toggle source

Retrieve the Flag9 value

@return Flag9 value

# File lib/mpxj/task_methods.rb, line 4945
def flag9
  get_boolean_value(attribute_values['flag9'])
end
free_slack() click to toggle source

Retrieve the Free Slack value

@return Free Slack value

# File lib/mpxj/task_methods.rb, line 4952
def free_slack
  get_duration_value(attribute_values['free_slack'])
end
group_by_summary() click to toggle source

Retrieve the Group By Summary value

@return Group By Summary value

# File lib/mpxj/task_methods.rb, line 4959
def group_by_summary
  attribute_values['group_by_summary']
end
guid() click to toggle source

Retrieve the GUID value

@return GUID value

# File lib/mpxj/task_methods.rb, line 4966
def guid
  attribute_values['guid']
end
hammock_code() click to toggle source

Retrieve the Hammock Code value

@return Hammock Code value

# File lib/mpxj/task_methods.rb, line 4973
def hammock_code
  get_boolean_value(attribute_values['hammock_code'])
end
hide_bar() click to toggle source

Retrieve the Hide Bar value

@return Hide Bar value

# File lib/mpxj/task_methods.rb, line 4980
def hide_bar
  get_boolean_value(attribute_values['hide_bar'])
end
id() click to toggle source

Retrieve the ID value

@return ID value

# File lib/mpxj/task_methods.rb, line 5029
def id
  get_integer_value(attribute_values['id'])
end
ignore_resource_calendar() click to toggle source

Retrieve the Ignore Resource Calendar value

@return Ignore Resource Calendar value

# File lib/mpxj/task_methods.rb, line 5036
def ignore_resource_calendar
  get_boolean_value(attribute_values['ignore_resource_calendar'])
end
ignore_warnings() click to toggle source

Retrieve the Ignore Warnings value

@return Ignore Warnings value

# File lib/mpxj/task_methods.rb, line 5043
def ignore_warnings
  get_boolean_value(attribute_values['ignore_warnings'])
end
index() click to toggle source

Retrieve the Index value

@return Index value

# File lib/mpxj/task_methods.rb, line 5050
def index
  get_integer_value(attribute_values['index'])
end
indicators() click to toggle source

Retrieve the Indicators value

@return Indicators value

# File lib/mpxj/task_methods.rb, line 5057
def indicators
  attribute_values['indicators']
end
is_duration_valid() click to toggle source

Retrieve the Is Duration Valid value

@return Is Duration Valid value

# File lib/mpxj/task_methods.rb, line 5064
def is_duration_valid
  get_boolean_value(attribute_values['is_duration_valid'])
end
is_finish_valid() click to toggle source

Retrieve the Is Finish Valid value

@return Is Finish Valid value

# File lib/mpxj/task_methods.rb, line 5071
def is_finish_valid
  get_boolean_value(attribute_values['is_finish_valid'])
end
is_start_valid() click to toggle source

Retrieve the Is Start Valid value

@return Is Start Valid value

# File lib/mpxj/task_methods.rb, line 5078
def is_start_valid
  get_boolean_value(attribute_values['is_start_valid'])
end
late_finish() click to toggle source

Retrieve the Late Finish value

@return Late Finish value

# File lib/mpxj/task_methods.rb, line 5085
def late_finish
  get_date_value(attribute_values['late_finish'])
end
late_start() click to toggle source

Retrieve the Late Start value

@return Late Start value

# File lib/mpxj/task_methods.rb, line 5092
def late_start
  get_date_value(attribute_values['late_start'])
end
level_assignments() click to toggle source

Retrieve the Level Assignments value

@return Level Assignments value

# File lib/mpxj/task_methods.rb, line 5120
def level_assignments
  get_boolean_value(attribute_values['level_assignments'])
end
leveling_can_split() click to toggle source

Retrieve the Leveling Can Split value

@return Leveling Can Split value

# File lib/mpxj/task_methods.rb, line 5099
def leveling_can_split
  get_boolean_value(attribute_values['leveling_can_split'])
end
leveling_delay() click to toggle source

Retrieve the Leveling Delay value

@return Leveling Delay value

# File lib/mpxj/task_methods.rb, line 5106
def leveling_delay
  get_duration_value(attribute_values['leveling_delay'])
end
leveling_delay_units() click to toggle source

Retrieve the Leveling Delay Units value

@return Leveling Delay Units value

# File lib/mpxj/task_methods.rb, line 5113
def leveling_delay_units
  attribute_values['leveling_delay_units']
end
linked_fields() click to toggle source

Retrieve the Linked Fields value

@return Linked Fields value

# File lib/mpxj/task_methods.rb, line 5127
def linked_fields
  get_boolean_value(attribute_values['linked_fields'])
end
location_unique_id() click to toggle source

Retrieve the Location Unique ID value

@return Location Unique ID value

# File lib/mpxj/task_methods.rb, line 5134
def location_unique_id
  get_integer_value(attribute_values['location_unique_id'])
end
longest_path() click to toggle source

Retrieve the Longest Path value

@return Longest Path value

# File lib/mpxj/task_methods.rb, line 5141
def longest_path
  get_boolean_value(attribute_values['longest_path'])
end
mail() click to toggle source

Retrieve the Mail value

@return Mail value

# File lib/mpxj/task_methods.rb, line 5148
def mail
  attribute_values['mail']
end
manager() click to toggle source

Retrieve the Manager value

@return Manager value

# File lib/mpxj/task_methods.rb, line 5155
def manager
  attribute_values['manager']
end
manual_duration() click to toggle source

Retrieve the Manual Duration value

@return Manual Duration value

# File lib/mpxj/task_methods.rb, line 5162
def manual_duration
  get_duration_value(attribute_values['manual_duration'])
end
manual_duration_units() click to toggle source

Retrieve the Manual Duration Units value

@return Manual Duration Units value

# File lib/mpxj/task_methods.rb, line 5169
def manual_duration_units
  attribute_values['manual_duration_units']
end
marked() click to toggle source

Retrieve the Marked value

@return Marked value

# File lib/mpxj/task_methods.rb, line 5176
def marked
  get_boolean_value(attribute_values['marked'])
end
milestone() click to toggle source

Retrieve the Milestone value

@return Milestone value

# File lib/mpxj/task_methods.rb, line 5183
def milestone
  get_boolean_value(attribute_values['milestone'])
end
mod_or_claim_number() click to toggle source

Retrieve the Mod or Claim Number value

@return Mod or Claim Number value

# File lib/mpxj/task_methods.rb, line 5190
def mod_or_claim_number
  attribute_values['mod_or_claim_number']
end
name() click to toggle source

Retrieve the Task Name value

@return Task Name value

# File lib/mpxj/task_methods.rb, line 5197
def name
  attribute_values['name']
end
notes() click to toggle source

Retrieve the Notes value

@return Notes value

# File lib/mpxj/task_methods.rb, line 5204
def notes
  attribute_values['notes']
end
null() click to toggle source

Retrieve the Null value

@return Null value

# File lib/mpxj/task_methods.rb, line 5211
def null
  get_boolean_value(attribute_values['null'])
end
number1() click to toggle source

Retrieve the Number1 value

@return Number1 value

# File lib/mpxj/task_methods.rb, line 5218
def number1
  get_float_value(attribute_values['number1'])
end
number10() click to toggle source

Retrieve the Number10 value

@return Number10 value

# File lib/mpxj/task_methods.rb, line 5225
def number10
  get_float_value(attribute_values['number10'])
end
number11() click to toggle source

Retrieve the Number11 value

@return Number11 value

# File lib/mpxj/task_methods.rb, line 5232
def number11
  get_float_value(attribute_values['number11'])
end
number12() click to toggle source

Retrieve the Number12 value

@return Number12 value

# File lib/mpxj/task_methods.rb, line 5239
def number12
  get_float_value(attribute_values['number12'])
end
number13() click to toggle source

Retrieve the Number13 value

@return Number13 value

# File lib/mpxj/task_methods.rb, line 5246
def number13
  get_float_value(attribute_values['number13'])
end
number14() click to toggle source

Retrieve the Number14 value

@return Number14 value

# File lib/mpxj/task_methods.rb, line 5253
def number14
  get_float_value(attribute_values['number14'])
end
number15() click to toggle source

Retrieve the Number15 value

@return Number15 value

# File lib/mpxj/task_methods.rb, line 5260
def number15
  get_float_value(attribute_values['number15'])
end
number16() click to toggle source

Retrieve the Number16 value

@return Number16 value

# File lib/mpxj/task_methods.rb, line 5267
def number16
  get_float_value(attribute_values['number16'])
end
number17() click to toggle source

Retrieve the Number17 value

@return Number17 value

# File lib/mpxj/task_methods.rb, line 5274
def number17
  get_float_value(attribute_values['number17'])
end
number18() click to toggle source

Retrieve the Number18 value

@return Number18 value

# File lib/mpxj/task_methods.rb, line 5281
def number18
  get_float_value(attribute_values['number18'])
end
number19() click to toggle source

Retrieve the Number19 value

@return Number19 value

# File lib/mpxj/task_methods.rb, line 5288
def number19
  get_float_value(attribute_values['number19'])
end
number2() click to toggle source

Retrieve the Number2 value

@return Number2 value

# File lib/mpxj/task_methods.rb, line 5295
def number2
  get_float_value(attribute_values['number2'])
end
number20() click to toggle source

Retrieve the Number20 value

@return Number20 value

# File lib/mpxj/task_methods.rb, line 5302
def number20
  get_float_value(attribute_values['number20'])
end
number3() click to toggle source

Retrieve the Number3 value

@return Number3 value

# File lib/mpxj/task_methods.rb, line 5309
def number3
  get_float_value(attribute_values['number3'])
end
number4() click to toggle source

Retrieve the Number4 value

@return Number4 value

# File lib/mpxj/task_methods.rb, line 5316
def number4
  get_float_value(attribute_values['number4'])
end
number5() click to toggle source

Retrieve the Number5 value

@return Number5 value

# File lib/mpxj/task_methods.rb, line 5323
def number5
  get_float_value(attribute_values['number5'])
end
number6() click to toggle source

Retrieve the Number6 value

@return Number6 value

# File lib/mpxj/task_methods.rb, line 5330
def number6
  get_float_value(attribute_values['number6'])
end
number7() click to toggle source

Retrieve the Number7 value

@return Number7 value

# File lib/mpxj/task_methods.rb, line 5337
def number7
  get_float_value(attribute_values['number7'])
end
number8() click to toggle source

Retrieve the Number8 value

@return Number8 value

# File lib/mpxj/task_methods.rb, line 5344
def number8
  get_float_value(attribute_values['number8'])
end
number9() click to toggle source

Retrieve the Number9 value

@return Number9 value

# File lib/mpxj/task_methods.rb, line 5351
def number9
  get_float_value(attribute_values['number9'])
end
objects() click to toggle source

Retrieve the Objects value

@return Objects value

# File lib/mpxj/task_methods.rb, line 5358
def objects
  get_float_value(attribute_values['objects'])
end
outline_code1() click to toggle source

Retrieve the Outline Code1 value

@return Outline Code1 value

# File lib/mpxj/task_methods.rb, line 5365
def outline_code1
  attribute_values['outline_code1']
end
outline_code10() click to toggle source

Retrieve the Outline Code10 value

@return Outline Code10 value

# File lib/mpxj/task_methods.rb, line 5372
def outline_code10
  attribute_values['outline_code10']
end
outline_code10_index() click to toggle source

Retrieve the Outline Code10 Index value

@return Outline Code10 Index value

# File lib/mpxj/task_methods.rb, line 5379
def outline_code10_index
  get_integer_value(attribute_values['outline_code10_index'])
end
outline_code1_index() click to toggle source

Retrieve the Outline Code1 Index value

@return Outline Code1 Index value

# File lib/mpxj/task_methods.rb, line 5386
def outline_code1_index
  get_integer_value(attribute_values['outline_code1_index'])
end
outline_code2() click to toggle source

Retrieve the Outline Code2 value

@return Outline Code2 value

# File lib/mpxj/task_methods.rb, line 5393
def outline_code2
  attribute_values['outline_code2']
end
outline_code2_index() click to toggle source

Retrieve the Outline Code2 Index value

@return Outline Code2 Index value

# File lib/mpxj/task_methods.rb, line 5400
def outline_code2_index
  get_integer_value(attribute_values['outline_code2_index'])
end
outline_code3() click to toggle source

Retrieve the Outline Code3 value

@return Outline Code3 value

# File lib/mpxj/task_methods.rb, line 5407
def outline_code3
  attribute_values['outline_code3']
end
outline_code3_index() click to toggle source

Retrieve the Outline Code3 Index value

@return Outline Code3 Index value

# File lib/mpxj/task_methods.rb, line 5414
def outline_code3_index
  get_integer_value(attribute_values['outline_code3_index'])
end
outline_code4() click to toggle source

Retrieve the Outline Code4 value

@return Outline Code4 value

# File lib/mpxj/task_methods.rb, line 5421
def outline_code4
  attribute_values['outline_code4']
end
outline_code4_index() click to toggle source

Retrieve the Outline Code4 Index value

@return Outline Code4 Index value

# File lib/mpxj/task_methods.rb, line 5428
def outline_code4_index
  get_integer_value(attribute_values['outline_code4_index'])
end
outline_code5() click to toggle source

Retrieve the Outline Code5 value

@return Outline Code5 value

# File lib/mpxj/task_methods.rb, line 5435
def outline_code5
  attribute_values['outline_code5']
end
outline_code5_index() click to toggle source

Retrieve the Outline Code5 Index value

@return Outline Code5 Index value

# File lib/mpxj/task_methods.rb, line 5442
def outline_code5_index
  get_integer_value(attribute_values['outline_code5_index'])
end
outline_code6() click to toggle source

Retrieve the Outline Code6 value

@return Outline Code6 value

# File lib/mpxj/task_methods.rb, line 5449
def outline_code6
  attribute_values['outline_code6']
end
outline_code6_index() click to toggle source

Retrieve the Outline Code6 Index value

@return Outline Code6 Index value

# File lib/mpxj/task_methods.rb, line 5456
def outline_code6_index
  get_integer_value(attribute_values['outline_code6_index'])
end
outline_code7() click to toggle source

Retrieve the Outline Code7 value

@return Outline Code7 value

# File lib/mpxj/task_methods.rb, line 5463
def outline_code7
  attribute_values['outline_code7']
end
outline_code7_index() click to toggle source

Retrieve the Outline Code7 Index value

@return Outline Code7 Index value

# File lib/mpxj/task_methods.rb, line 5470
def outline_code7_index
  get_integer_value(attribute_values['outline_code7_index'])
end
outline_code8() click to toggle source

Retrieve the Outline Code8 value

@return Outline Code8 value

# File lib/mpxj/task_methods.rb, line 5477
def outline_code8
  attribute_values['outline_code8']
end
outline_code8_index() click to toggle source

Retrieve the Outline Code8 Index value

@return Outline Code8 Index value

# File lib/mpxj/task_methods.rb, line 5484
def outline_code8_index
  get_integer_value(attribute_values['outline_code8_index'])
end
outline_code9() click to toggle source

Retrieve the Outline Code9 value

@return Outline Code9 value

# File lib/mpxj/task_methods.rb, line 5491
def outline_code9
  attribute_values['outline_code9']
end
outline_code9_index() click to toggle source

Retrieve the Outline Code9 Index value

@return Outline Code9 Index value

# File lib/mpxj/task_methods.rb, line 5498
def outline_code9_index
  get_integer_value(attribute_values['outline_code9_index'])
end
outline_level() click to toggle source

Retrieve the Outline Level value

@return Outline Level value

# File lib/mpxj/task_methods.rb, line 5505
def outline_level
  get_integer_value(attribute_values['outline_level'])
end
outline_number() click to toggle source

Retrieve the Outline Number value

@return Outline Number value

# File lib/mpxj/task_methods.rb, line 5512
def outline_number
  attribute_values['outline_number']
end
overall_percent_complete() click to toggle source

Retrieve the Overall Percent Complete value

@return Overall Percent Complete value

# File lib/mpxj/task_methods.rb, line 5526
def overall_percent_complete
  get_float_value(attribute_values['overall_percent_complete'])
end
overallocated() click to toggle source

Retrieve the Overallocated value

@return Overallocated value

# File lib/mpxj/task_methods.rb, line 5519
def overallocated
  get_boolean_value(attribute_values['overallocated'])
end
overtime_cost() click to toggle source

Retrieve the Overtime Cost value

@return Overtime Cost value

# File lib/mpxj/task_methods.rb, line 5533
def overtime_cost
  get_float_value(attribute_values['overtime_cost'])
end
overtime_work() click to toggle source

Retrieve the Overtime Work value

@return Overtime Work value

# File lib/mpxj/task_methods.rb, line 5540
def overtime_work
  get_duration_value(attribute_values['overtime_work'])
end
parent_task_unique_id() click to toggle source

Retrieve the Parent Task Unique ID value

@return Parent Task Unique ID value

# File lib/mpxj/task_methods.rb, line 5547
def parent_task_unique_id
  get_integer_value(attribute_values['parent_task_unique_id'])
end
path_driven_successor() click to toggle source

Retrieve the Path Driven Successor value

@return Path Driven Successor value

# File lib/mpxj/task_methods.rb, line 5554
def path_driven_successor
  get_boolean_value(attribute_values['path_driven_successor'])
end
path_driving_predecessor() click to toggle source

Retrieve the Path Driving Predecessor value

@return Path Driving Predecessor value

# File lib/mpxj/task_methods.rb, line 5561
def path_driving_predecessor
  get_boolean_value(attribute_values['path_driving_predecessor'])
end
path_predecessor() click to toggle source

Retrieve the Path Predecessor value

@return Path Predecessor value

# File lib/mpxj/task_methods.rb, line 5568
def path_predecessor
  get_boolean_value(attribute_values['path_predecessor'])
end
path_successor() click to toggle source

Retrieve the Path Successor value

@return Path Successor value

# File lib/mpxj/task_methods.rb, line 5575
def path_successor
  get_boolean_value(attribute_values['path_successor'])
end
peak() click to toggle source

Retrieve the Peak value

@return Peak value

# File lib/mpxj/task_methods.rb, line 5582
def peak
  get_float_value(attribute_values['peak'])
end
percent_complete() click to toggle source

Retrieve the % Complete value

@return % Complete value

# File lib/mpxj/task_methods.rb, line 5589
def percent_complete
  get_float_value(attribute_values['percent_complete'])
end
percent_complete_type() click to toggle source

Retrieve the Percent Complete Type value

@return Percent Complete Type value

# File lib/mpxj/task_methods.rb, line 5596
def percent_complete_type
  attribute_values['percent_complete_type']
end
percent_work_complete() click to toggle source

Retrieve the % Work Complete value

@return % Work Complete value

# File lib/mpxj/task_methods.rb, line 5603
def percent_work_complete
  get_float_value(attribute_values['percent_work_complete'])
end
phase_of_work() click to toggle source

Retrieve the Phase of Work value

@return Phase of Work value

# File lib/mpxj/task_methods.rb, line 5610
def phase_of_work
  attribute_values['phase_of_work']
end
physical_percent_complete() click to toggle source

Retrieve the Physical % Complete value

@return Physical % Complete value

# File lib/mpxj/task_methods.rb, line 5617
def physical_percent_complete
  get_float_value(attribute_values['physical_percent_complete'])
end
placeholder() click to toggle source

Retrieve the Placeholder value

@return Placeholder value

# File lib/mpxj/task_methods.rb, line 5624
def placeholder
  get_boolean_value(attribute_values['placeholder'])
end
planned_cost() click to toggle source

Retrieve the Planned Cost value

@return Planned Cost value

# File lib/mpxj/task_methods.rb, line 5631
def planned_cost
  get_float_value(attribute_values['planned_cost'])
end
planned_duration() click to toggle source

Retrieve the Planned Duration value

@return Planned Duration value

# File lib/mpxj/task_methods.rb, line 5638
def planned_duration
  get_duration_value(attribute_values['planned_duration'])
end
planned_finish() click to toggle source

Retrieve the Planned Finish value

@return Planned Finish value

# File lib/mpxj/task_methods.rb, line 5645
def planned_finish
  get_date_value(attribute_values['planned_finish'])
end
planned_start() click to toggle source

Retrieve the Planned Start value

@return Planned Start value

# File lib/mpxj/task_methods.rb, line 5652
def planned_start
  get_date_value(attribute_values['planned_start'])
end
planned_work() click to toggle source

Retrieve the Planned Work value

@return Planned Work value

# File lib/mpxj/task_methods.rb, line 5659
def planned_work
  get_duration_value(attribute_values['planned_work'])
end
planned_work_labor() click to toggle source

Retrieve the Planned Work (Labor) value

@return Planned Work (Labor) value

# File lib/mpxj/task_methods.rb, line 5666
def planned_work_labor
  get_duration_value(attribute_values['planned_work_labor'])
end
planned_work_nonlabor() click to toggle source

Retrieve the Planned Work (Nonlabor) value

@return Planned Work (Nonlabor) value

# File lib/mpxj/task_methods.rb, line 5673
def planned_work_nonlabor
  get_duration_value(attribute_values['planned_work_nonlabor'])
end
predecessors() click to toggle source

Retrieve the Predecessors value

@return Predecessors value

# File lib/mpxj/task_methods.rb, line 5680
def predecessors
  attribute_values['predecessors']
end
preleveled_finish() click to toggle source

Retrieve the Preleveled Finish value

@return Preleveled Finish value

# File lib/mpxj/task_methods.rb, line 5687
def preleveled_finish
  get_date_value(attribute_values['preleveled_finish'])
end
preleveled_start() click to toggle source

Retrieve the Preleveled Start value

@return Preleveled Start value

# File lib/mpxj/task_methods.rb, line 5694
def preleveled_start
  get_date_value(attribute_values['preleveled_start'])
end
primary_resource_id() click to toggle source

Retrieve the Primary Resource Unique ID value

@return Primary Resource Unique ID value

# File lib/mpxj/task_methods.rb, line 5701
def primary_resource_id
  get_integer_value(attribute_values['primary_resource_id'])
end
priority() click to toggle source

Retrieve the Priority value

@return Priority value

# File lib/mpxj/task_methods.rb, line 5708
def priority
  get_integer_value(attribute_values['priority'])
end
project() click to toggle source

Retrieve the Project value

@return Project value

# File lib/mpxj/task_methods.rb, line 5715
def project
  attribute_values['project']
end
publish() click to toggle source

Retrieve the Publish value

@return Publish value

# File lib/mpxj/task_methods.rb, line 5722
def publish
  get_boolean_value(attribute_values['publish'])
end
recalc_outline_codes() click to toggle source

Retrieve the Recalc Outline Codes value

@return Recalc Outline Codes value

# File lib/mpxj/task_methods.rb, line 5729
def recalc_outline_codes
  get_boolean_value(attribute_values['recalc_outline_codes'])
end
recurring() click to toggle source

Retrieve the Recurring value

@return Recurring value

# File lib/mpxj/task_methods.rb, line 5736
def recurring
  get_boolean_value(attribute_values['recurring'])
end
recurring_data() click to toggle source

Retrieve the Recurring Data value

@return Recurring Data value

# File lib/mpxj/task_methods.rb, line 5743
def recurring_data
  attribute_values['recurring_data']
end
regular_work() click to toggle source

Retrieve the Regular Work value

@return Regular Work value

# File lib/mpxj/task_methods.rb, line 5750
def regular_work
  get_duration_value(attribute_values['regular_work'])
end
remaining_cost() click to toggle source

Retrieve the Remaining Cost value

@return Remaining Cost value

# File lib/mpxj/task_methods.rb, line 5757
def remaining_cost
  get_float_value(attribute_values['remaining_cost'])
end
remaining_duration() click to toggle source

Retrieve the Remaining Duration value

@return Remaining Duration value

# File lib/mpxj/task_methods.rb, line 5764
def remaining_duration
  get_duration_value(attribute_values['remaining_duration'])
end
remaining_early_finish() click to toggle source

Retrieve the Remaining Early Finish value

@return Remaining Early Finish value

# File lib/mpxj/task_methods.rb, line 5771
def remaining_early_finish
  get_date_value(attribute_values['remaining_early_finish'])
end
remaining_early_start() click to toggle source

Retrieve the Remaining Early Start value

@return Remaining Early Start value

# File lib/mpxj/task_methods.rb, line 5778
def remaining_early_start
  get_date_value(attribute_values['remaining_early_start'])
end
remaining_late_finish() click to toggle source

Retrieve the Remaining Late Finish value

@return Remaining Late Finish value

# File lib/mpxj/task_methods.rb, line 5785
def remaining_late_finish
  get_date_value(attribute_values['remaining_late_finish'])
end
remaining_late_start() click to toggle source

Retrieve the Remaining Late Start value

@return Remaining Late Start value

# File lib/mpxj/task_methods.rb, line 5792
def remaining_late_start
  get_date_value(attribute_values['remaining_late_start'])
end
remaining_overtime_cost() click to toggle source

Retrieve the Remaining Overtime Cost value

@return Remaining Overtime Cost value

# File lib/mpxj/task_methods.rb, line 5799
def remaining_overtime_cost
  get_float_value(attribute_values['remaining_overtime_cost'])
end
remaining_overtime_work() click to toggle source

Retrieve the Remaining Overtime Work value

@return Remaining Overtime Work value

# File lib/mpxj/task_methods.rb, line 5806
def remaining_overtime_work
  get_duration_value(attribute_values['remaining_overtime_work'])
end
remaining_work() click to toggle source

Retrieve the Remaining Work value

@return Remaining Work value

# File lib/mpxj/task_methods.rb, line 5813
def remaining_work
  get_duration_value(attribute_values['remaining_work'])
end
remaining_work_labor() click to toggle source

Retrieve the Remaining Work (Labor) value

@return Remaining Work (Labor) value

# File lib/mpxj/task_methods.rb, line 5820
def remaining_work_labor
  get_duration_value(attribute_values['remaining_work_labor'])
end
remaining_work_nonlabor() click to toggle source

Retrieve the Remaining Work (Nonlabor) value

@return Remaining Work (Nonlabor) value

# File lib/mpxj/task_methods.rb, line 5827
def remaining_work_nonlabor
  get_duration_value(attribute_values['remaining_work_nonlabor'])
end
request_demand() click to toggle source

Retrieve the Request/Demand value

@return Request/Demand value

# File lib/mpxj/task_methods.rb, line 5834
def request_demand
  attribute_values['request_demand']
end
resource_enterprise_multi_value_code20() click to toggle source

Retrieve the Resource Enterprise Multi Value Code20 value

@return Resource Enterprise Multi Value Code20 value

# File lib/mpxj/task_methods.rb, line 5841
def resource_enterprise_multi_value_code20
  attribute_values['resource_enterprise_multi_value_code20']
end
resource_enterprise_multi_value_code21() click to toggle source

Retrieve the Resource Enterprise Multi Value Code21 value

@return Resource Enterprise Multi Value Code21 value

# File lib/mpxj/task_methods.rb, line 5848
def resource_enterprise_multi_value_code21
  attribute_values['resource_enterprise_multi_value_code21']
end
resource_enterprise_multi_value_code22() click to toggle source

Retrieve the Resource Enterprise Multi Value Code22 value

@return Resource Enterprise Multi Value Code22 value

# File lib/mpxj/task_methods.rb, line 5855
def resource_enterprise_multi_value_code22
  attribute_values['resource_enterprise_multi_value_code22']
end
resource_enterprise_multi_value_code23() click to toggle source

Retrieve the Resource Enterprise Multi Value Code23 value

@return Resource Enterprise Multi Value Code23 value

# File lib/mpxj/task_methods.rb, line 5862
def resource_enterprise_multi_value_code23
  attribute_values['resource_enterprise_multi_value_code23']
end
resource_enterprise_multi_value_code24() click to toggle source

Retrieve the Resource Enterprise Multi Value Code24 value

@return Resource Enterprise Multi Value Code24 value

# File lib/mpxj/task_methods.rb, line 5869
def resource_enterprise_multi_value_code24
  attribute_values['resource_enterprise_multi_value_code24']
end
resource_enterprise_multi_value_code25() click to toggle source

Retrieve the Resource Enterprise Multi Value Code25 value

@return Resource Enterprise Multi Value Code25 value

# File lib/mpxj/task_methods.rb, line 5876
def resource_enterprise_multi_value_code25
  attribute_values['resource_enterprise_multi_value_code25']
end
resource_enterprise_multi_value_code26() click to toggle source

Retrieve the Resource Enterprise Multi Value Code26 value

@return Resource Enterprise Multi Value Code26 value

# File lib/mpxj/task_methods.rb, line 5883
def resource_enterprise_multi_value_code26
  attribute_values['resource_enterprise_multi_value_code26']
end
resource_enterprise_multi_value_code27() click to toggle source

Retrieve the Resource Enterprise Multi Value Code27 value

@return Resource Enterprise Multi Value Code27 value

# File lib/mpxj/task_methods.rb, line 5890
def resource_enterprise_multi_value_code27
  attribute_values['resource_enterprise_multi_value_code27']
end
resource_enterprise_multi_value_code28() click to toggle source

Retrieve the Resource Enterprise Multi Value Code28 value

@return Resource Enterprise Multi Value Code28 value

# File lib/mpxj/task_methods.rb, line 5897
def resource_enterprise_multi_value_code28
  attribute_values['resource_enterprise_multi_value_code28']
end
resource_enterprise_multi_value_code29() click to toggle source

Retrieve the Resource Enterprise Multi Value Code29 value

@return Resource Enterprise Multi Value Code29 value

# File lib/mpxj/task_methods.rb, line 5904
def resource_enterprise_multi_value_code29
  attribute_values['resource_enterprise_multi_value_code29']
end
resource_enterprise_outline_code1() click to toggle source

Retrieve the Resource Enterprise Outline Code1 value

@return Resource Enterprise Outline Code1 value

# File lib/mpxj/task_methods.rb, line 5911
def resource_enterprise_outline_code1
  attribute_values['resource_enterprise_outline_code1']
end
resource_enterprise_outline_code10() click to toggle source

Retrieve the Resource Enterprise Outline Code10 value

@return Resource Enterprise Outline Code10 value

# File lib/mpxj/task_methods.rb, line 5918
def resource_enterprise_outline_code10
  attribute_values['resource_enterprise_outline_code10']
end
resource_enterprise_outline_code11() click to toggle source

Retrieve the Resource Enterprise Outline Code11 value

@return Resource Enterprise Outline Code11 value

# File lib/mpxj/task_methods.rb, line 5925
def resource_enterprise_outline_code11
  attribute_values['resource_enterprise_outline_code11']
end
resource_enterprise_outline_code12() click to toggle source

Retrieve the Resource Enterprise Outline Code12 value

@return Resource Enterprise Outline Code12 value

# File lib/mpxj/task_methods.rb, line 5932
def resource_enterprise_outline_code12
  attribute_values['resource_enterprise_outline_code12']
end
resource_enterprise_outline_code13() click to toggle source

Retrieve the Resource Enterprise Outline Code13 value

@return Resource Enterprise Outline Code13 value

# File lib/mpxj/task_methods.rb, line 5939
def resource_enterprise_outline_code13
  attribute_values['resource_enterprise_outline_code13']
end
resource_enterprise_outline_code14() click to toggle source

Retrieve the Resource Enterprise Outline Code14 value

@return Resource Enterprise Outline Code14 value

# File lib/mpxj/task_methods.rb, line 5946
def resource_enterprise_outline_code14
  attribute_values['resource_enterprise_outline_code14']
end
resource_enterprise_outline_code15() click to toggle source

Retrieve the Resource Enterprise Outline Code15 value

@return Resource Enterprise Outline Code15 value

# File lib/mpxj/task_methods.rb, line 5953
def resource_enterprise_outline_code15
  attribute_values['resource_enterprise_outline_code15']
end
resource_enterprise_outline_code16() click to toggle source

Retrieve the Resource Enterprise Outline Code16 value

@return Resource Enterprise Outline Code16 value

# File lib/mpxj/task_methods.rb, line 5960
def resource_enterprise_outline_code16
  attribute_values['resource_enterprise_outline_code16']
end
resource_enterprise_outline_code17() click to toggle source

Retrieve the Resource Enterprise Outline Code17 value

@return Resource Enterprise Outline Code17 value

# File lib/mpxj/task_methods.rb, line 5967
def resource_enterprise_outline_code17
  attribute_values['resource_enterprise_outline_code17']
end
resource_enterprise_outline_code18() click to toggle source

Retrieve the Resource Enterprise Outline Code18 value

@return Resource Enterprise Outline Code18 value

# File lib/mpxj/task_methods.rb, line 5974
def resource_enterprise_outline_code18
  attribute_values['resource_enterprise_outline_code18']
end
resource_enterprise_outline_code19() click to toggle source

Retrieve the Resource Enterprise Outline Code19 value

@return Resource Enterprise Outline Code19 value

# File lib/mpxj/task_methods.rb, line 5981
def resource_enterprise_outline_code19
  attribute_values['resource_enterprise_outline_code19']
end
resource_enterprise_outline_code2() click to toggle source

Retrieve the Resource Enterprise Outline Code2 value

@return Resource Enterprise Outline Code2 value

# File lib/mpxj/task_methods.rb, line 5988
def resource_enterprise_outline_code2
  attribute_values['resource_enterprise_outline_code2']
end
resource_enterprise_outline_code20() click to toggle source

Retrieve the Resource Enterprise Outline Code20 value

@return Resource Enterprise Outline Code20 value

# File lib/mpxj/task_methods.rb, line 5995
def resource_enterprise_outline_code20
  attribute_values['resource_enterprise_outline_code20']
end
resource_enterprise_outline_code21() click to toggle source

Retrieve the Resource Enterprise Outline Code21 value

@return Resource Enterprise Outline Code21 value

# File lib/mpxj/task_methods.rb, line 6002
def resource_enterprise_outline_code21
  attribute_values['resource_enterprise_outline_code21']
end
resource_enterprise_outline_code22() click to toggle source

Retrieve the Resource Enterprise Outline Code22 value

@return Resource Enterprise Outline Code22 value

# File lib/mpxj/task_methods.rb, line 6009
def resource_enterprise_outline_code22
  attribute_values['resource_enterprise_outline_code22']
end
resource_enterprise_outline_code23() click to toggle source

Retrieve the Resource Enterprise Outline Code23 value

@return Resource Enterprise Outline Code23 value

# File lib/mpxj/task_methods.rb, line 6016
def resource_enterprise_outline_code23
  attribute_values['resource_enterprise_outline_code23']
end
resource_enterprise_outline_code24() click to toggle source

Retrieve the Resource Enterprise Outline Code24 value

@return Resource Enterprise Outline Code24 value

# File lib/mpxj/task_methods.rb, line 6023
def resource_enterprise_outline_code24
  attribute_values['resource_enterprise_outline_code24']
end
resource_enterprise_outline_code25() click to toggle source

Retrieve the Resource Enterprise Outline Code25 value

@return Resource Enterprise Outline Code25 value

# File lib/mpxj/task_methods.rb, line 6030
def resource_enterprise_outline_code25
  attribute_values['resource_enterprise_outline_code25']
end
resource_enterprise_outline_code26() click to toggle source

Retrieve the Resource Enterprise Outline Code26 value

@return Resource Enterprise Outline Code26 value

# File lib/mpxj/task_methods.rb, line 6037
def resource_enterprise_outline_code26
  attribute_values['resource_enterprise_outline_code26']
end
resource_enterprise_outline_code27() click to toggle source

Retrieve the Resource Enterprise Outline Code27 value

@return Resource Enterprise Outline Code27 value

# File lib/mpxj/task_methods.rb, line 6044
def resource_enterprise_outline_code27
  attribute_values['resource_enterprise_outline_code27']
end
resource_enterprise_outline_code28() click to toggle source

Retrieve the Resource Enterprise Outline Code28 value

@return Resource Enterprise Outline Code28 value

# File lib/mpxj/task_methods.rb, line 6051
def resource_enterprise_outline_code28
  attribute_values['resource_enterprise_outline_code28']
end
resource_enterprise_outline_code29() click to toggle source

Retrieve the Resource Enterprise Outline Code29 value

@return Resource Enterprise Outline Code29 value

# File lib/mpxj/task_methods.rb, line 6058
def resource_enterprise_outline_code29
  attribute_values['resource_enterprise_outline_code29']
end
resource_enterprise_outline_code3() click to toggle source

Retrieve the Resource Enterprise Outline Code3 value

@return Resource Enterprise Outline Code3 value

# File lib/mpxj/task_methods.rb, line 6065
def resource_enterprise_outline_code3
  attribute_values['resource_enterprise_outline_code3']
end
resource_enterprise_outline_code4() click to toggle source

Retrieve the Resource Enterprise Outline Code4 value

@return Resource Enterprise Outline Code4 value

# File lib/mpxj/task_methods.rb, line 6072
def resource_enterprise_outline_code4
  attribute_values['resource_enterprise_outline_code4']
end
resource_enterprise_outline_code5() click to toggle source

Retrieve the Resource Enterprise Outline Code5 value

@return Resource Enterprise Outline Code5 value

# File lib/mpxj/task_methods.rb, line 6079
def resource_enterprise_outline_code5
  attribute_values['resource_enterprise_outline_code5']
end
resource_enterprise_outline_code6() click to toggle source

Retrieve the Resource Enterprise Outline Code6 value

@return Resource Enterprise Outline Code6 value

# File lib/mpxj/task_methods.rb, line 6086
def resource_enterprise_outline_code6
  attribute_values['resource_enterprise_outline_code6']
end
resource_enterprise_outline_code7() click to toggle source

Retrieve the Resource Enterprise Outline Code7 value

@return Resource Enterprise Outline Code7 value

# File lib/mpxj/task_methods.rb, line 6093
def resource_enterprise_outline_code7
  attribute_values['resource_enterprise_outline_code7']
end
resource_enterprise_outline_code8() click to toggle source

Retrieve the Resource Enterprise Outline Code8 value

@return Resource Enterprise Outline Code8 value

# File lib/mpxj/task_methods.rb, line 6100
def resource_enterprise_outline_code8
  attribute_values['resource_enterprise_outline_code8']
end
resource_enterprise_outline_code9() click to toggle source

Retrieve the Resource Enterprise Outline Code9 value

@return Resource Enterprise Outline Code9 value

# File lib/mpxj/task_methods.rb, line 6107
def resource_enterprise_outline_code9
  attribute_values['resource_enterprise_outline_code9']
end
resource_enterprise_rbs() click to toggle source

Retrieve the Resource Enterprise Rbs value

@return Resource Enterprise Rbs value

# File lib/mpxj/task_methods.rb, line 6114
def resource_enterprise_rbs
  attribute_values['resource_enterprise_rbs']
end
resource_group() click to toggle source

Retrieve the Resource Group value

@return Resource Group value

# File lib/mpxj/task_methods.rb, line 6121
def resource_group
  attribute_values['resource_group']
end
resource_initials() click to toggle source

Retrieve the Resource Initials value

@return Resource Initials value

# File lib/mpxj/task_methods.rb, line 6128
def resource_initials
  attribute_values['resource_initials']
end
resource_names() click to toggle source

Retrieve the Resource Names value

@return Resource Names value

# File lib/mpxj/task_methods.rb, line 6135
def resource_names
  attribute_values['resource_names']
end
resource_phonetics() click to toggle source

Retrieve the Resource Phonetics value

@return Resource Phonetics value

# File lib/mpxj/task_methods.rb, line 6142
def resource_phonetics
  attribute_values['resource_phonetics']
end
resource_type() click to toggle source

Retrieve the Resource Type value

@return Resource Type value

# File lib/mpxj/task_methods.rb, line 6149
def resource_type
  attribute_values['resource_type']
end
response_pending() click to toggle source

Retrieve the Response Pending value

@return Response Pending value

# File lib/mpxj/task_methods.rb, line 6156
def response_pending
  get_boolean_value(attribute_values['response_pending'])
end
responsibility_code() click to toggle source

Retrieve the Responsibility Code value

@return Responsibility Code value

# File lib/mpxj/task_methods.rb, line 6163
def responsibility_code
  attribute_values['responsibility_code']
end
resume() click to toggle source

Retrieve the Resume value

@return Resume value

# File lib/mpxj/task_methods.rb, line 6170
def resume
  get_date_value(attribute_values['resume'])
end
resume_no_earlier_than() click to toggle source

Retrieve the Resume No Earlier Than value

@return Resume No Earlier Than value

# File lib/mpxj/task_methods.rb, line 6177
def resume_no_earlier_than
  get_date_value(attribute_values['resume_no_earlier_than'])
end
resume_valid() click to toggle source

Retrieve the Resume Valid value

@return Resume Valid value

# File lib/mpxj/task_methods.rb, line 6184
def resume_valid
  get_boolean_value(attribute_values['resume_valid'])
end
rollup() click to toggle source

Retrieve the Rollup value

@return Rollup value

# File lib/mpxj/task_methods.rb, line 6191
def rollup
  get_boolean_value(attribute_values['rollup'])
end
scheduled_duration() click to toggle source

Retrieve the Scheduled Duration value

@return Scheduled Duration value

# File lib/mpxj/task_methods.rb, line 6198
def scheduled_duration
  get_duration_value(attribute_values['scheduled_duration'])
end
scheduled_finish() click to toggle source

Retrieve the Scheduled Finish value

@return Scheduled Finish value

# File lib/mpxj/task_methods.rb, line 6205
def scheduled_finish
  get_date_value(attribute_values['scheduled_finish'])
end
scheduled_start() click to toggle source

Retrieve the Scheduled Start value

@return Scheduled Start value

# File lib/mpxj/task_methods.rb, line 6212
def scheduled_start
  get_date_value(attribute_values['scheduled_start'])
end
secondary_constraint_date() click to toggle source

Retrieve the Secondary Constraint Date value

@return Secondary Constraint Date value

# File lib/mpxj/task_methods.rb, line 6219
def secondary_constraint_date
  get_date_value(attribute_values['secondary_constraint_date'])
end
secondary_constraint_type() click to toggle source

Retrieve the Secondary Constraint Type value

@return Secondary Constraint Type value

# File lib/mpxj/task_methods.rb, line 6226
def secondary_constraint_type
  attribute_values['secondary_constraint_type']
end
section() click to toggle source

Retrieve the Section value

@return Section value

# File lib/mpxj/task_methods.rb, line 6233
def section
  attribute_values['section']
end
sequence_number() click to toggle source

Retrieve the Sequence Number value

@return Sequence Number value

# File lib/mpxj/task_methods.rb, line 6240
def sequence_number
  get_integer_value(attribute_values['sequence_number'])
end
show_duration_text() click to toggle source

Retrieve the Show Duration Text value

@return Show Duration Text value

# File lib/mpxj/task_methods.rb, line 6247
def show_duration_text
  get_boolean_value(attribute_values['show_duration_text'])
end
show_finish_text() click to toggle source

Retrieve the Show Finish Text value

@return Show Finish Text value

# File lib/mpxj/task_methods.rb, line 6254
def show_finish_text
  get_boolean_value(attribute_values['show_finish_text'])
end
show_on_board() click to toggle source

Retrieve the Show On Board value

@return Show On Board value

# File lib/mpxj/task_methods.rb, line 6261
def show_on_board
  attribute_values['show_on_board']
end
show_start_text() click to toggle source

Retrieve the Show Start Text value

@return Show Start Text value

# File lib/mpxj/task_methods.rb, line 6268
def show_start_text
  get_boolean_value(attribute_values['show_start_text'])
end
spi() click to toggle source

Retrieve the SPI value

@return SPI value

# File lib/mpxj/task_methods.rb, line 6275
def spi
  get_float_value(attribute_values['spi'])
end
splits() click to toggle source

Retrieve the Splits value

@return Splits value

# File lib/mpxj/task_methods.rb, line 6282
def splits
  attribute_values['splits']
end
sprint() click to toggle source

Retrieve the Sprint value

@return Sprint value

# File lib/mpxj/task_methods.rb, line 6289
def sprint
  attribute_values['sprint']
end
sprint_finish() click to toggle source

Retrieve the Sprint Finish value

@return Sprint Finish value

# File lib/mpxj/task_methods.rb, line 6296
def sprint_finish
  get_date_value(attribute_values['sprint_finish'])
end
sprint_id() click to toggle source

Retrieve the Sprint ID value

@return Sprint ID value

# File lib/mpxj/task_methods.rb, line 6303
def sprint_id
  get_integer_value(attribute_values['sprint_id'])
end
sprint_start() click to toggle source

Retrieve the Sprint Start value

@return Sprint Start value

# File lib/mpxj/task_methods.rb, line 6310
def sprint_start
  get_date_value(attribute_values['sprint_start'])
end
start() click to toggle source

Retrieve the Start value

@return Start value

# File lib/mpxj/task_methods.rb, line 6317
def start
  get_date_value(attribute_values['start'])
end
start1() click to toggle source

Retrieve the Start1 value

@return Start1 value

# File lib/mpxj/task_methods.rb, line 6324
def start1
  get_date_value(attribute_values['start1'])
end
start10() click to toggle source

Retrieve the Start10 value

@return Start10 value

# File lib/mpxj/task_methods.rb, line 6331
def start10
  get_date_value(attribute_values['start10'])
end
start2() click to toggle source

Retrieve the Start2 value

@return Start2 value

# File lib/mpxj/task_methods.rb, line 6338
def start2
  get_date_value(attribute_values['start2'])
end
start3() click to toggle source

Retrieve the Start3 value

@return Start3 value

# File lib/mpxj/task_methods.rb, line 6345
def start3
  get_date_value(attribute_values['start3'])
end
start4() click to toggle source

Retrieve the Start4 value

@return Start4 value

# File lib/mpxj/task_methods.rb, line 6352
def start4
  get_date_value(attribute_values['start4'])
end
start5() click to toggle source

Retrieve the Start5 value

@return Start5 value

# File lib/mpxj/task_methods.rb, line 6359
def start5
  get_date_value(attribute_values['start5'])
end
start6() click to toggle source

Retrieve the Start6 value

@return Start6 value

# File lib/mpxj/task_methods.rb, line 6366
def start6
  get_date_value(attribute_values['start6'])
end
start7() click to toggle source

Retrieve the Start7 value

@return Start7 value

# File lib/mpxj/task_methods.rb, line 6373
def start7
  get_date_value(attribute_values['start7'])
end
start8() click to toggle source

Retrieve the Start8 value

@return Start8 value

# File lib/mpxj/task_methods.rb, line 6380
def start8
  get_date_value(attribute_values['start8'])
end
start9() click to toggle source

Retrieve the Start9 value

@return Start9 value

# File lib/mpxj/task_methods.rb, line 6387
def start9
  get_date_value(attribute_values['start9'])
end
start_slack() click to toggle source

Retrieve the Start Slack value

@return Start Slack value

# File lib/mpxj/task_methods.rb, line 6394
def start_slack
  get_duration_value(attribute_values['start_slack'])
end
start_text() click to toggle source

Retrieve the Start value

@return Start value

# File lib/mpxj/task_methods.rb, line 6401
def start_text
  attribute_values['start_text']
end
start_variance() click to toggle source

Retrieve the Start Variance value

@return Start Variance value

# File lib/mpxj/task_methods.rb, line 6408
def start_variance
  get_duration_value(attribute_values['start_variance'])
end
status() click to toggle source

Retrieve the Status value

@return Status value

# File lib/mpxj/task_methods.rb, line 6415
def status
  attribute_values['status']
end
status_indicator() click to toggle source

Retrieve the Status Indicator value

@return Status Indicator value

# File lib/mpxj/task_methods.rb, line 6422
def status_indicator
  attribute_values['status_indicator']
end
status_manager() click to toggle source

Retrieve the Status Manager value

@return Status Manager value

# File lib/mpxj/task_methods.rb, line 6429
def status_manager
  attribute_values['status_manager']
end
steps() click to toggle source

Retrieve the Steps value

@return Steps value

# File lib/mpxj/task_methods.rb, line 6436
def steps
  attribute_values['steps']
end
stop() click to toggle source

Retrieve the Stop value

@return Stop value

# File lib/mpxj/task_methods.rb, line 6443
def stop
  get_date_value(attribute_values['stop'])
end
stored_material() click to toggle source

Retrieve the Stored Material value

@return Stored Material value

# File lib/mpxj/task_methods.rb, line 6450
def stored_material
  get_float_value(attribute_values['stored_material'])
end
subproject_file() click to toggle source

Retrieve the Subproject File value

@return Subproject File value

# File lib/mpxj/task_methods.rb, line 6457
def subproject_file
  attribute_values['subproject_file']
end
subproject_guid() click to toggle source

Retrieve the Subproject GUID value

@return Subproject GUID value

# File lib/mpxj/task_methods.rb, line 6464
def subproject_guid
  attribute_values['subproject_guid']
end
subproject_read_only() click to toggle source

Retrieve the Subproject Read Only value

@return Subproject Read Only value

# File lib/mpxj/task_methods.rb, line 6471
def subproject_read_only
  get_boolean_value(attribute_values['subproject_read_only'])
end
subproject_task_id() click to toggle source

Retrieve the Subproject Task ID value

@return Subproject Task ID value

# File lib/mpxj/task_methods.rb, line 6485
def subproject_task_id
  get_integer_value(attribute_values['subproject_task_id'])
end
subproject_task_unique_id() click to toggle source

Retrieve the Subproject Task Unique ID value

@return Subproject Task Unique ID value

# File lib/mpxj/task_methods.rb, line 6492
def subproject_task_unique_id
  get_integer_value(attribute_values['subproject_task_unique_id'])
end
subproject_tasks_uniqueid_offset() click to toggle source

Retrieve the Subproject Tasks Unique ID Offset value

@return Subproject Tasks Unique ID Offset value

# File lib/mpxj/task_methods.rb, line 6478
def subproject_tasks_uniqueid_offset
  get_integer_value(attribute_values['subproject_tasks_uniqueid_offset'])
end
successors() click to toggle source

Retrieve the Successors value

@return Successors value

# File lib/mpxj/task_methods.rb, line 6499
def successors
  attribute_values['successors']
end
summary() click to toggle source

Retrieve the Summary value

@return Summary value

# File lib/mpxj/task_methods.rb, line 6506
def summary
  get_boolean_value(attribute_values['summary'])
end
summary_progress() click to toggle source

Retrieve the Summary Progress value

@return Summary Progress value

# File lib/mpxj/task_methods.rb, line 6513
def summary_progress
  get_date_value(attribute_values['summary_progress'])
end
suspend_date() click to toggle source

Retrieve the Suspend Date value

@return Suspend Date value

# File lib/mpxj/task_methods.rb, line 6520
def suspend_date
  get_date_value(attribute_values['suspend_date'])
end
sv() click to toggle source

Retrieve the SV value

@return SV value

# File lib/mpxj/task_methods.rb, line 6527
def sv
  get_float_value(attribute_values['sv'])
end
svpercent() click to toggle source

Retrieve the SV% value

@return SV% value

# File lib/mpxj/task_methods.rb, line 6534
def svpercent
  get_float_value(attribute_values['svpercent'])
end
task_calendar() click to toggle source

Retrieve the Task Calendar value

@return Task Calendar value

# File lib/mpxj/task_methods.rb, line 6541
def task_calendar
  attribute_values['task_calendar']
end
task_calendar_guid() click to toggle source

Retrieve the Task Calendar GUID value

@return Task Calendar GUID value

# File lib/mpxj/task_methods.rb, line 6548
def task_calendar_guid
  attribute_values['task_calendar_guid']
end
task_mode() click to toggle source

Retrieve the Task Mode value

@return Task Mode value

# File lib/mpxj/task_methods.rb, line 6555
def task_mode
  attribute_values['task_mode']
end
task_summary_name() click to toggle source

Retrieve the Task Summary Name value

@return Task Summary Name value

# File lib/mpxj/task_methods.rb, line 6562
def task_summary_name
  attribute_values['task_summary_name']
end
tcpi() click to toggle source

Retrieve the TCPI value

@return TCPI value

# File lib/mpxj/task_methods.rb, line 6569
def tcpi
  get_float_value(attribute_values['tcpi'])
end
teamstatus_pending() click to toggle source

Retrieve the TeamStatus Pending value

@return TeamStatus Pending value

# File lib/mpxj/task_methods.rb, line 6576
def teamstatus_pending
  get_boolean_value(attribute_values['teamstatus_pending'])
end
text1() click to toggle source

Retrieve the Text1 value

@return Text1 value

# File lib/mpxj/task_methods.rb, line 6583
def text1
  attribute_values['text1']
end
text10() click to toggle source

Retrieve the Text10 value

@return Text10 value

# File lib/mpxj/task_methods.rb, line 6590
def text10
  attribute_values['text10']
end
text11() click to toggle source

Retrieve the Text11 value

@return Text11 value

# File lib/mpxj/task_methods.rb, line 6597
def text11
  attribute_values['text11']
end
text12() click to toggle source

Retrieve the Text12 value

@return Text12 value

# File lib/mpxj/task_methods.rb, line 6604
def text12
  attribute_values['text12']
end
text13() click to toggle source

Retrieve the Text13 value

@return Text13 value

# File lib/mpxj/task_methods.rb, line 6611
def text13
  attribute_values['text13']
end
text14() click to toggle source

Retrieve the Text14 value

@return Text14 value

# File lib/mpxj/task_methods.rb, line 6618
def text14
  attribute_values['text14']
end
text15() click to toggle source

Retrieve the Text15 value

@return Text15 value

# File lib/mpxj/task_methods.rb, line 6625
def text15
  attribute_values['text15']
end
text16() click to toggle source

Retrieve the Text16 value

@return Text16 value

# File lib/mpxj/task_methods.rb, line 6632
def text16
  attribute_values['text16']
end
text17() click to toggle source

Retrieve the Text17 value

@return Text17 value

# File lib/mpxj/task_methods.rb, line 6639
def text17
  attribute_values['text17']
end
text18() click to toggle source

Retrieve the Text18 value

@return Text18 value

# File lib/mpxj/task_methods.rb, line 6646
def text18
  attribute_values['text18']
end
text19() click to toggle source

Retrieve the Text19 value

@return Text19 value

# File lib/mpxj/task_methods.rb, line 6653
def text19
  attribute_values['text19']
end
text2() click to toggle source

Retrieve the Text2 value

@return Text2 value

# File lib/mpxj/task_methods.rb, line 6660
def text2
  attribute_values['text2']
end
text20() click to toggle source

Retrieve the Text20 value

@return Text20 value

# File lib/mpxj/task_methods.rb, line 6667
def text20
  attribute_values['text20']
end
text21() click to toggle source

Retrieve the Text21 value

@return Text21 value

# File lib/mpxj/task_methods.rb, line 6674
def text21
  attribute_values['text21']
end
text22() click to toggle source

Retrieve the Text22 value

@return Text22 value

# File lib/mpxj/task_methods.rb, line 6681
def text22
  attribute_values['text22']
end
text23() click to toggle source

Retrieve the Text23 value

@return Text23 value

# File lib/mpxj/task_methods.rb, line 6688
def text23
  attribute_values['text23']
end
text24() click to toggle source

Retrieve the Text24 value

@return Text24 value

# File lib/mpxj/task_methods.rb, line 6695
def text24
  attribute_values['text24']
end
text25() click to toggle source

Retrieve the Text25 value

@return Text25 value

# File lib/mpxj/task_methods.rb, line 6702
def text25
  attribute_values['text25']
end
text26() click to toggle source

Retrieve the Text26 value

@return Text26 value

# File lib/mpxj/task_methods.rb, line 6709
def text26
  attribute_values['text26']
end
text27() click to toggle source

Retrieve the Text27 value

@return Text27 value

# File lib/mpxj/task_methods.rb, line 6716
def text27
  attribute_values['text27']
end
text28() click to toggle source

Retrieve the Text28 value

@return Text28 value

# File lib/mpxj/task_methods.rb, line 6723
def text28
  attribute_values['text28']
end
text29() click to toggle source

Retrieve the Text29 value

@return Text29 value

# File lib/mpxj/task_methods.rb, line 6730
def text29
  attribute_values['text29']
end
text3() click to toggle source

Retrieve the Text3 value

@return Text3 value

# File lib/mpxj/task_methods.rb, line 6737
def text3
  attribute_values['text3']
end
text30() click to toggle source

Retrieve the Text30 value

@return Text30 value

# File lib/mpxj/task_methods.rb, line 6744
def text30
  attribute_values['text30']
end
text4() click to toggle source

Retrieve the Text4 value

@return Text4 value

# File lib/mpxj/task_methods.rb, line 6751
def text4
  attribute_values['text4']
end
text5() click to toggle source

Retrieve the Text5 value

@return Text5 value

# File lib/mpxj/task_methods.rb, line 6758
def text5
  attribute_values['text5']
end
text6() click to toggle source

Retrieve the Text6 value

@return Text6 value

# File lib/mpxj/task_methods.rb, line 6765
def text6
  attribute_values['text6']
end
text7() click to toggle source

Retrieve the Text7 value

@return Text7 value

# File lib/mpxj/task_methods.rb, line 6772
def text7
  attribute_values['text7']
end
text8() click to toggle source

Retrieve the Text8 value

@return Text8 value

# File lib/mpxj/task_methods.rb, line 6779
def text8
  attribute_values['text8']
end
text9() click to toggle source

Retrieve the Text9 value

@return Text9 value

# File lib/mpxj/task_methods.rb, line 6786
def text9
  attribute_values['text9']
end
total_slack() click to toggle source

Retrieve the Total Slack value

@return Total Slack value

# File lib/mpxj/task_methods.rb, line 6793
def total_slack
  get_duration_value(attribute_values['total_slack'])
end
type() click to toggle source

Retrieve the Type value

@return Type value

# File lib/mpxj/task_methods.rb, line 6800
def type
  attribute_values['type']
end
unavailable() click to toggle source

Retrieve the <Unavailable> value

@return <Unavailable> value

# File lib/mpxj/task_methods.rb, line 6807
def unavailable
  attribute_values['unavailable']
end
unique_id() click to toggle source

Retrieve the Unique ID value

@return Unique ID value

# File lib/mpxj/task_methods.rb, line 6814
def unique_id
  get_integer_value(attribute_values['unique_id'])
end
unique_id_predecessors() click to toggle source

Retrieve the Unique ID Predecessors value

@return Unique ID Predecessors value

# File lib/mpxj/task_methods.rb, line 6821
def unique_id_predecessors
  attribute_values['unique_id_predecessors']
end
unique_id_successors() click to toggle source

Retrieve the Unique ID Successors value

@return Unique ID Successors value

# File lib/mpxj/task_methods.rb, line 6828
def unique_id_successors
  attribute_values['unique_id_successors']
end
update_needed() click to toggle source

Retrieve the Update Needed value

@return Update Needed value

# File lib/mpxj/task_methods.rb, line 6835
def update_needed
  get_boolean_value(attribute_values['update_needed'])
end
vac() click to toggle source

Retrieve the VAC value

@return VAC value

# File lib/mpxj/task_methods.rb, line 6842
def vac
  get_float_value(attribute_values['vac'])
end
warning() click to toggle source

Retrieve the Warning value

@return Warning value

# File lib/mpxj/task_methods.rb, line 6849
def warning
  get_boolean_value(attribute_values['warning'])
end
wbs() click to toggle source

Retrieve the WBS value

@return WBS value

# File lib/mpxj/task_methods.rb, line 6856
def wbs
  attribute_values['wbs']
end
wbs_predecessors() click to toggle source

Retrieve the WBS Predecessors value

@return WBS Predecessors value

# File lib/mpxj/task_methods.rb, line 6863
def wbs_predecessors
  attribute_values['wbs_predecessors']
end
wbs_successors() click to toggle source

Retrieve the WBS Successors value

@return WBS Successors value

# File lib/mpxj/task_methods.rb, line 6870
def wbs_successors
  attribute_values['wbs_successors']
end
work() click to toggle source

Retrieve the Work value

@return Work value

# File lib/mpxj/task_methods.rb, line 6877
def work
  get_duration_value(attribute_values['work'])
end
work_area_code() click to toggle source

Retrieve the Work Area Code value

@return Work Area Code value

# File lib/mpxj/task_methods.rb, line 6891
def work_area_code
  attribute_values['work_area_code']
end
work_contour() click to toggle source

Retrieve the Work Contour value

@return Work Contour value

# File lib/mpxj/task_methods.rb, line 6898
def work_contour
  attribute_values['work_contour']
end
work_variance() click to toggle source

Retrieve the Work Variance value

@return Work Variance value

# File lib/mpxj/task_methods.rb, line 6905
def work_variance
  get_duration_value(attribute_values['work_variance'])
end
workers_per_day() click to toggle source

Retrieve the Workers per Day value

@return Workers per Day value

# File lib/mpxj/task_methods.rb, line 6884
def workers_per_day
  get_integer_value(attribute_values['workers_per_day'])
end