AvailableFrom

Rsc.AvailableFrom field

The starting date that a resource is available for work at the units specified for the current time period.

public static readonly Key<DateTime, RscKey> AvailableFrom;

Examples

Shows how to read/write Rsc.AvailableFrom property.

var project = new Project();

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

resource.Set(Rsc.AvailableFrom, new DateTime(2020, 4, 10, 8, 0, 0));

Console.WriteLine("Available From: " + resource.Get(Rsc.AvailableFrom));

See Also