The PrjTaskConstraintType enumeration is used to determine a type of task constraint by time.
It used by the IPrjTask.ConstraintType property.
| Value | Brief description |
| 0 | AsLateAsPossible. The task execution must start as late as possible. |
| 1 | AsSoonAsPossible. The task execution must start as soon as possible. |
| 2 | FinishNoEarlierThan. Task end date is determined no earlier than the specified date. |
| 3 | FinishNoLaterThan. Task end date is determined no later than the specified date. |
| 4 | MustFinishOn. Task end date is fixed. |
| 5 | MustStartOn. Task start date is fixed. |
| 6 | StartNoEarlierThan. Task start date is determined no earlier than the specified date. |
| 7 | StartNoLaterThan. Task start date is determined no later than the specified date. |
See also: