Click or drag to resize

RscKey Enumeration

Represents a list of supported resource fields.

Namespace:  Aspose.Tasks
Assembly:  Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntax
public enum RscKey
Members
  Member nameValueDescription
Name0 Represents the Name (Resource) field.
AccrueAt1 Represents the Accrue At (Resource) field.
ActualCost2 Represents the Actual Cost (Resource) field.
ActualOvertimeCost3 Represents the Actual Overtime Cost (Resource) field.
ActualOvertimeWork4 Represents the Actual Overtime Work (Resource) field.
ActualOvertimeWorkProtected5 Represents the Actual Overtime Work Protected (Resource) field.
ActualWork6 Represents the Actual Work (Resource) field.
ActualWorkProtected7 Represents the Actual Work Protected (Resource) field.
ACWP8 Represents the ACWP (Resource) field.
AssignmentOwner9 Represents the Assignment Owner (Resource) field.
AssignmentOwnerGuid10 Represents the Assignment Owner Guid (Resource) field.
AssignmentUnits11 Represents the Assignment Units (Resource) field.
AvailableFrom12 Represents the Available From (Resource) field.
AvailableTo13 Represents the Available To (Resource) field.
ActiveDirectoryGuid14 Represents the Active Directory Guid (Resource) field.
BaseCalendar15 Represents the Base Calendar (Resource) field.
BCWP16 Represents the BCWP (Resource) field.
BCWS17 Represents the BCWS (Resource) field.
BookingType18 Represents the Booking Type (Resource) field.
BudgetWork19 Represents the Budget Work (Resource) field.
BudgetCost20 Represents the Budget Cost (Resource) field.
Calendar21 Represents the Calendar GUID (Resource) field.
CanLevel22 Represents the Can Level (Resource) field.
Code23 Represents the Code (Resource) field.
Confirmed24 Represents the Confirmed (Resource) field.
Cost25 Represents the Cost (Resource) field.
CostCenter26 Represents the Cost Center (Resource) field.
CostPerUse27 Represents the Cost Per Use (Resource) field.
CostRateTable28 Represents the Cost Rate Table (Resource) field.
CostVariance29 Represents the Cost Variance (Resource) field.
Created30 Represents the Created (Resource) field.
CV31 Represents the CV (Resource) field.
SV32 Represents the SV (Resource) field.
EMailAddress33 Represents the EMail Address (Resource) field.
IsBudget34 Represents the Budget (Resource) field.
IsGeneric35 Represents the Generic (Resource) field.
IsEnterprise36 Represents the Enterprise (Resource) field.
IsCostResource37 Represents the Is Cost (Resource) field.
Inactive38 Represents the Inactive (Resource) field.
Finish39 Represents the Finish (Resource) field.
Group40 Represents the Group (Resource) field.
GroupBySummary41 Represents the Group by Summary (Resource) field.
Guid42 Represents the GUID (Resource) field.
Hyperlink43 Represents the Hyperlink (Resource) field.
HyperlinkAddress44 Represents the Hyperlink Address (Resource) field.
HyperlinkHref45 Represents the Hyperlink HRef (Resource) field.
HyperlinkSubAddress46 Represents the Hyperlink Sub Address (Resource) field.
Id47 Represents the ID (Resource) field.
Initials48 Represents the Initials (Resource) field.
IsAssignment49 Represents the Is Assignment (Resource) field.
IsNull50 Represents IsNull field.
IsTeamAssignmentPool51 Represents the Is Team (Resource) field.
LevelingDelay52 Represents the Leveling Delay (Resource) field.
LinkedFields53 Represents the Linked Fields (Resource) field.
MaterialLabel54 Represents the Material Label (Resource) field.
MaxUnits55 Represents the Max Units (Resource) field.
Notes56 Represents the Notes (Resource) field.
NotesRTF57 Represents the Notes RTF (Resource) field.
NotesText58 Represents the Notes Text (Resource) field.
Overallocated59 Represents the Overallocated (Resource) field.
OvertimeCost60 Represents the Overtime Cost (Resource) field.
OvertimeRate61 Represents the Overtime Rate (Resource) field.
OvertimeRateFormat62 Represents the Overtime Rate Format (Resource) field.
OvertimeWork63 Represents the Overtime Work (Resource) field.
PeakUnits64 Represents the Peak Units (Resource) field.
PercentWorkComplete65 Represents the Percent Work Complete (Resource) field.
Phonetics66 Represents the Phonetics (Resource) field.
Project67 Represents the Project (Resource) field.
RegularWork68 Represents the Regular Work (Resource) field.
RemainingCost69 Represents the Remaining Cost (Resource) field.
RemainingOvertimeCost70 Represents the Remaining Overtime Cost (Resource) field.
RemainingOvertimeWork71 Represents the Remaining Overtime Work (Resource) field.
RemainingWork72 Represents the Remaining Work (Resource) field.
ResponsePending73 Represents the Response Pending (Resource) field.
StandardRate74 Represents the Standard Rate (Resource) field.
StandardRateFormat75 Represents the Standard Rate Format (Resource) field.
Start76 Represents the Start (Resource) field.
Type77 Represents the Type (Resource) field.
Uid78 Represents the UniqueID (Resource) field.
VAC79 Represents the VAC (Resource) field.
WBS80 Represents the WBS (Resource) field.
WindowsUserAccount81 Represents the Windows User Account (Resource) field.
Work82 Represents the Work (Resource) field.
WorkContour83 Represents the Work Contour (Resource) field.
Workgroup84 Represents the Workgroup (Resource) field.
WorkVariance85 Represents the Work Variance (Resource) field.
Examples
Shows how to read/write Rsc.Name property.
var project = new Project();

var resource = project.Resources.Add("Resource");

resource.Set(Rsc.Name, "John Smith");

Console.WriteLine("Name: " + resource.Get(Rsc.Name));
See Also