BookingType

Rsc.BookingType field

The booking type of a resource.

public static readonly Key<BookingType, RscKey> BookingType;

Examples

Shows how to read/write Rsc.BookingType property.

var project = new Project();

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

resource.Set(Rsc.BookingType, BookingType.Committed);

Console.WriteLine("Booking Type: " + resource.Get(Rsc.BookingType));

See Also