Click or drag to resize

PrjKey Enumeration

Represents a list of supported project fields.

Namespace:  Aspose.Tasks
Assembly:  Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntax
public enum PrjKey
Members
  Member nameValueDescription
ShowProjectSummaryTask0 Represents the ShowProjectSummaryTask (Project) field.
SaveVersion1 Represents the SaveVersion (Project) field.
Uid2 Represents the Uid (Project) field.
Title3 Represents the Title (Project) field.
Subject4 Represents the Subject (Project) field.
Category5 Represents the Category (Project) field.
Company6 Represents the Company (Project) field.
Manager7 Represents the Manager (Project) field.
Author8 Represents the Author (Project) field.
CreationDate9 Represents the CreationDate (Project) field.
Revision10 Represents the Revision (Project) field.
LastSaved11 Represents the LastSaved (Project) field.
ScheduleFromStart12 Represents the ScheduleFromStart (Project) field.
StartDate13 Represents the StartDate (Project) field.
FinishDate14 Represents the FinishDate (Project) field.
FyStartDate15 Represents the
FyStartDate
(Project) field.
CriticalSlackLimit16 Represents the CriticalSlackLimit (Project) field.
CurrencyDigits17 Represents the CurrencyDigits (Project) field.
CurrencySymbol18 Represents the CurrencySymbol (Project) field.
CurrencyCode19 Represents the CurrencyCode (Project) field.
CurrencySymbolPosition20 Represents the CurrencySymbolPosition (Project) field.
Calendar21 Represents the Calendar (Project) field.
DateFormat22 Represents the DateFormat (Project) field.
DefaultStartTime23 Represents the DefaultStartTime (Project) field.
DefaultFinishTime24 Represents the DefaultFinishTime (Project) field.
MinutesPerDay25 Represents the MinutesPerDay (Project) field.
MinutesPerWeek26 Represents the MinutesPerWeek (Project) field.
DaysPerMonth27 Represents the DaysPerMonth (Project) field.
DefaultTaskType28 Represents the DefaultTaskType (Project) field.
DefaultFixedCostAccrual29 Represents the DefaultFixedCostAccrual (Project) field.
DefaultStandardRate30 Represents the DefaultStandardRate (Project) field.
DefaultOvertimeRate31 Represents the DefaultOvertimeRate (Project) field.
DurationFormat32 Represents the DurationFormat (Project) field.
WorkFormat33 Represents the WorkFormat (Project) field.
AreEditableActualCosts34 Represents the AreEditableActualCosts (Project) field.
HonorConstraints35 Represents the HonorConstraints (Project) field.
EarnedValueMethod36 Represents the EarnedValueMethod (Project) field.
InsertedProjectsLikeSummary37 Represents the InsertedProjectsLikeSummary (Project) field.
MultipleCriticalPaths38 Represents the MultipleCriticalPaths (Project) field.
NewTasksEffortDriven39 Represents the NewTasksEffortDriven (Project) field.
NewTasksEstimated40 Represents the NewTasksEstimated (Project) field.
SplitsInProgressTasks41 Represents the SplitsInProgressTasks (Project) field.
SpreadActualCosts42 Represents the SpreadActualCosts (Project) field.
SpreadPercentComplete43 Represents the SpreadPercentComplete (Project) field.
TaskUpdatesResource44 Represents the TaskUpdatesResource (Project) field.
FiscalYearStart45 Represents the FiscalYearStart (Project) field.
WeekStartDay46 Represents the WeekStartDay (Project) field.
MoveCompletedEndsBack47 Represents the MoveCompletedEndsBack (Project) field.
MoveRemainingStartsBack48 Represents the MoveRemainingStartsBack (Project) field.
MoveRemainingStartsForward49 Represents the MoveRemainingStartsForward (Project) field.
MoveCompletedEndsForward50 Represents the MoveCompletedEndsForward (Project) field.
BaselineForEarnedValue51 Represents the BaselineForEarnedValue (Project) field.
AutoAddNewResourcesAndTasks52 Represents the AutoAddNewResourcesAndTasks (Project) field.
StatusDate53 Represents the StatusDate (Project) field.
CurrentDate54 Represents the CurrentDate (Project) field.
MicrosoftProjectServerURL55 Represents the MicrosoftProjectServerURL (Project) field.
Autolink56 Represents the Autolink (Project) field.
NewTaskStartDate57 Represents the NewTaskStartDate (Project) field.
DefaultTaskEVMethod58 Represents the DefaultTaskEVMethod (Project) field.
ExtendedCreationDate59 Represents the ExtendedCreationDate (Project) field.
ActualsInSync60 Represents the ActualsInSync (Project) field.
ProjectExternallyEdited61 Represents the ProjectExternallyEdited (Project) field.
RemoveFileProperties62 Represents the RemoveFileProperties (Project) field.
AdminProject63 Represents the AdminProject (Project) field.
Name64 Represents the Name (Project) field.
TimescaleStart65 Represents the TimescaleStart (Project) field.
TimescaleFinish66 Represents the TimescaleFinish (Project) field.
Comments67 Represents the Comments (Project) field.
Keywords68 Represents the Keywords (Project) field.
Template69 Represents the Template (Project) field.
LastAuthor70 Represents the LastAuthor (Project) field.
LastPrinted71 Represents the LastPrinted (Project) field.
HyperlinkBase72 Represents the HyperlinkBase (Project) field.
NewTasksAreManual73 Represents the NewTasksAreManual (Project) field.
UpdateManuallyScheduledTasksWhenEditingLinks74 Represents the UpdateManuallyScheduledTasksWhenEditingLinks (Project) field.
KeepTaskOnNearestWorkingTimeWhenMadeAutoScheduled75 Represents the KeepTaskOnNearestWorkingTimeWhenMadeAutoScheduled (Project) field.
DefaultCalendarGuid76 Default calendar guid.
DefaultCalendarUid77 Default calendar uid.
Guid78 Represents the guid of a project.
CustomDateFormat79 Represents user-defined date format.
TemplateFullPath80 Represents the Template (Project) full file name.
Examples
Shows how to set attributes for new tasks.
var project = new Project();
project.Set(Prj.NewTaskStartDate, TaskStartDateType.CurrentDate);

Console.WriteLine("New Task Start Date: " + project.Get(Prj.NewTaskStartDate));
See Also