Rsc

Contents
[ ]

Rsc class

Represents supported properties of Resource object.

public static class Rsc

Fields

Name Description
static readonly AccrueAt Determines how and when resource standard and overtime costs are to be charged, or accrued, to the cost of a task.
static readonly ActiveDirectoryGuid The Active Directory Guid for a resource.
static readonly ActualCost Costs incurred for work already performed by resources on their tasks, along with any other recorded costs associated with the task.
static readonly ActualOvertimeCost Costs incurred for overtime work already performed on tasks by assigned resources.
static readonly ActualOvertimeWork The actual amount of overtime work already performed by resource assigned to tasks.
static readonly ActualOvertimeWorkProtected The amount of work through which actual overtime work is protected.
static readonly ActualWork The amount of work that has already been done by resource assigned to tasks.
static readonly ActualWorkProtected The amount of work through which actual work is protected.
static readonly ACWP The actual cost of a work performed by a resource for the project to-date.
static readonly AssignmentOwner The name of an assignment owner.
static readonly AssignmentOwnerGuid The GUID of an assignment owner.
static readonly AvailableFrom The starting date that a resource is available for work at the units specified for the current time period.
static readonly AvailableTo The end date that a resource is available for work at the units specified for the current time period.
static readonly BCWP The budgeted cost of a work performed by a resource for the project to-date.
static readonly BCWS The budget cost of a work scheduled for a resource.
static readonly BookingType The booking type of a resource.
static readonly BudgetCost Budget costs for budget cost resources. Budget resources are assigned only to the project summary task.
static readonly BudgetWork budget work for budget work and material resources. Budget resources are assigned only to the project summary task.
static readonly Calendar The calendar of a resource.
static readonly CanLevel Determines whether resource leveling can be done on a resource.
static readonly Code The code or other information about a resource.
static readonly Cost The total scheduled or projected cost for a resource, based on costs already incurred for work performed by resources assigned to the tasks, in addition to the costs planned for the remaining work.
static readonly CostCenter Indicates which cost center the costs accrued by the resource should be charged to.
static readonly CostPerUse The cost that accrues every time that a resource is used.
static readonly CostVariance The difference between the baseline cost and total cost for a resource.
static readonly Created The date and time when a resource was added to the project.
static readonly CV The earned value cost variance, through the project status date. CV is the difference between the task’s BCWP (budgeted cost of work performed) and ACWP (actual cost of work performed).
static readonly EMailAddress The email address of a resource.
static readonly Finish The date when a resource is scheduled to complete work on all assigned tasks.
static readonly Group The group to which a resource belongs.
static readonly Guid Contains the generated unique identification code for the resource.
static readonly Hyperlink The title or explanatory text of a hyperlink associated with a resource.
static readonly HyperlinkAddress The address for a hyperlink associated with a resource.
static readonly HyperlinkSubAddress The specific location in a document in a hyperlink associated with a task.
static readonly Id The position identifier of a resource within the list of resources.
static readonly Inactive Determines whether a resource was made inactive by a user who has administrative rights.
static readonly Initials The initials of a resource.
static readonly IsBudget Determines whether a work, material, or cost resource is a budget resource.
static readonly IsCostResource Determines whether a resource is a cost resource.
static readonly IsEnterprise Shows whether a resource is from the enterprise resource pool (true) or the local resource pool (false).
static readonly IsGeneric Determines whether a resource is generic or not.
static readonly IsNull Determines whether a resource is null.
static readonly IsTeamAssignmentPool Shows whether the current resource is a team resource.
static readonly MaterialLabel The unit of measure for the material resource.
static readonly MaxUnits The maximum number of units representing the maximum capacity for which a resource is available to accomplish any tasks during the current time period.
static readonly Name The name of a resource.
static readonly NotesRTF The text notes in RTF format. Supported for MPP formats only.
static readonly NotesText Notes’ plain text extracted from RTF data.
static readonly Overallocated Indicates whether a resource is assigned to more work on a specific task or all tasks than can be completed within normal working capacity.
static readonly OvertimeCost The total overtime cost for a resource on all assigned tasks.
static readonly OvertimeRate The rate of pay for overtime work performed by a resource.
static readonly OvertimeRateFormat The units used by Microsoft Project to display the overtime rate.
static readonly OvertimeWork The amount of overtime scheduled to be performed by a resource on a task and charged at the overtime rates of the resources involved.
static readonly PeakUnits The maximum assignment unit for a resource at any one point in time for all tasks to which the resource is assigned.
static readonly PercentWorkComplete The percentage of work completed across all tasks.
static readonly Phonetics The phonetic spelling of the resource name. For use with Japanese only.
static readonly RegularWork The total amount of non overtime work scheduled to be performed by resource.
static readonly RemainingCost The remaining scheduled expense that will be incurred in completing the remaining scheduled work.
static readonly RemainingOvertimeCost The remaining scheduled overtime expense for a resource.
static readonly RemainingOvertimeWork The amount of remaining scheduled overtime.
static readonly RemainingWork The time still required to complete a task or set of tasks.
static readonly StandardRate The rate of pay for regular, non-overtime work performed by a resource.
static readonly StandardRateFormat The units used by Microsoft Project to display the standard rate.
static readonly Start The date when an assigned resource is scheduled to begin working on a task.
static readonly SV The earned value schedule variance, through the project status date. SV is the difference between budgeted cost of work performed (BCWP) and budgeted cost of work scheduled (BCWS).
static readonly Type The type of a resource.
static readonly Uid The unique identifier of a resource.
static readonly WindowsUserAccount The NT account associated with a resource.
static readonly Work The total amount of time scheduled for a resource on a task.
static readonly Workgroup The type of a workgroup to which a resource belongs.
static readonly WorkVariance The difference between baseline work of a resource and the currently scheduled work.

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