Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions english/python-net/aspose.tasks.primavera/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Contains classes necessary to work with Primavera-specific formats (XER, Primave
| Enumeration | Description |
| :- | :- |
|[PrimaveraActivityType](/tasks/python-net/aspose.tasks.primavera/primaveraactivitytype/)|Specifies type of Primavera activity.|
|[PrimaveraConstraintType](/tasks/python-net/aspose.tasks.primavera/primaveraconstrainttype/)|Specifies a type of activity's constraint.|
|[PrimaveraDurationType](/tasks/python-net/aspose.tasks.primavera/primaveradurationtype/)|Specifies duration type of Primavera activity.|
|[PrimaveraPercentCompleteType](/tasks/python-net/aspose.tasks.primavera/primaverapercentcompletetype/)|Specifies value of '% Complete Type' field for Primavera activities.|
|[PrimaveraRelationshipLagCalendar](/tasks/python-net/aspose.tasks.primavera/primaverarelationshiplagcalendar/)|Specifies which calendar to use for scheduling Relationship Lag in Primavera projects.|
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: PrimaveraConstraintType
second_title: Aspose.Tasks for Python via .NET API Reference
description:
type: docs
weight: 30
url: /python-net/aspose.tasks.primavera/primaveraconstrainttype/
---

## PrimaveraConstraintType enumeration

Specifies a type of activity's constraint.

## Members
| Member name | Description |
| :- | :- |
|NONE|Not specified or not applicable.|
|FINISH_ON|'Finish On' type|
|FINISH_ON_OR_AFTER|'Finish On or After' type|
|FINISH_ON_OR_BEFORE|'Finish On or Before' type|
|MANDATORY_FINISH|'Mandatory Finish' type|
|MANDATORY_START|'Mandatory Start' type|
|START_ON|'Start On' type|
|START_ON_OR_AFTER|'Start On or After' type|
|START_ON_OR_BEFORE|'Start On or Before' type|
|AS_LATE_AS_POSSIBLE|'As Late As Possible' type|

### See Also

* namespace [aspose.tasks.primavera](/tasks/python-net/aspose.tasks.primavera/)
* assembly [Aspose.Tasks](/tasks/python-net/)

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: PrimaveraDurationType
second_title: Aspose.Tasks for Python via .NET API Reference
description:
type: docs
weight: 30
weight: 40
url: /python-net/aspose.tasks.primavera/primaveradurationtype/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: PrimaveraPercentCompleteType
second_title: Aspose.Tasks for Python via .NET API Reference
description:
type: docs
weight: 40
weight: 50
url: /python-net/aspose.tasks.primavera/primaverapercentcompletetype/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: PrimaveraRelationshipLagCalendar
second_title: Aspose.Tasks for Python via .NET API Reference
description:
type: docs
weight: 50
weight: 60
url: /python-net/aspose.tasks.primavera/primaverarelationshiplagcalendar/
---

Expand Down
2 changes: 0 additions & 2 deletions english/python-net/aspose.tasks/groupcriterion/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ The GroupCriterion type exposes the following members:
|cell_color|Gets or sets the color of the cell background for a field used as a criterion in a group definition.|
|font_color|Gets or sets the color of the font for a field used as a criterion in a group definition.|
|field|Gets or sets the field being grouped by.|
|index|Gets the index of a [GroupCriterion](/tasks/python-net/aspose.tasks/groupcriterion/) object in the containing [GroupCriterionCollection](/tasks/python-net/aspose.tasks/groupcriterioncollection/) collection.|
|parent_group|Gets the parent of the [GroupCriterion](/tasks/python-net/aspose.tasks/groupcriterion/) object.|
|group_on|Gets or sets the type of grouping for a field used as a criterion in a group definition.|
|pattern|Gets or sets the pattern of the cell for a field used as a criterion in a group definition.|
|start_at|Gets or sets the start of the intervals for a field used as a criterion in a group definition.|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ url: /python-net/aspose.tasks/groupcriterioncollection/
Contains a collection of [GroupCriterion](/tasks/python-net/aspose.tasks/groupcriterion/) objects.<br/> Implements ICollection<GroupCriterion> interface.

The GroupCriterionCollection type exposes the following members:
## Properties
| Name | Description |
| :- | :- |
|parent_group|Gets the parent of the GroupCriterion object.|
## Methods
| Name | Description |
| :- | :- |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ The PrimaveraTaskProperties type exposes the following members:
|budgeted_expense_cost|Gets the value of budgeted (or planned) expense cost.|
|actual_total_cost|Gets the total value of actual costs.|
|budgeted_total_cost|Gets the total value of budgeted (or planned) costs.|
|primary_constraint_type|Gets a type of primary constraint.|
|primary_constraint_date|Gets the date of primary constraint.|
|secondary_constraint_type|Gets a type of secondary constraint.|
|secondary_constraint_date|Gets the date of secondary constraint.|

### See Also

Expand Down