PeakUnits

Rsc.PeakUnits field

The maximum assignment unit for a resource at any one point in time for all tasks to which the resource is assigned.

public static readonly Key<double, RscKey> PeakUnits;

Examples

Shows how to read/write Rsc.PeakUnits property.

var project = new Project();

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

resource.Set(Rsc.PeakUnits, 2);

Console.WriteLine("Peak Units: " + resource.Get(Rsc.PeakUnits));

See Also