CanLevel

Rsc.CanLevel field

Determines whether resource leveling can be done on a resource.

public static readonly Key<NullableBool, RscKey> CanLevel;

Examples

Shows how to read/write Rsc.CanLevel property.

var project = new Project();

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

resource.Set(Rsc.CanLevel, true);

Console.WriteLine("Can Level: " + resource.Get(Rsc.CanLevel));

See Also