ResourceMax Load Property
Constraints on values which the Resource gains (or loses for negative values)
as Jobs are completed. The Resource cannot be assigned a schedule which would
break the Resource's maximum load constraints.
The MaxLoad is set using an ID (the dictionary's key) and a number value (the dictionary's value).
The ID corresponds to an ID set in the LoadChange
dictionary for each JobPart. When a JobPart
is completed by a Resource, the Resource's running total for each ID is increased
or decreased by the value for the IDs in the JobPart.
Definition
Namespace: VRSolver
Assembly: VRSolver (in VRSolver.dll) Version: 1.15.0+d867f7e856f281547f683ef6449a86e433a2356d
Assembly: VRSolver (in VRSolver.dll) Version: 1.15.0+d867f7e856f281547f683ef6449a86e433a2356d
C#
public Dictionary<string, double> MaxLoad { get; set; }VB
Public Property MaxLoad As Dictionary(Of String, Double)
Get
SetC++
public:
property Dictionary<String^, double>^ MaxLoad {
Dictionary<String^, double>^ get ();
void set (Dictionary<String^, double>^ value);
}F#
member MaxLoad : Dictionary<string, float> with get, set