IsEnterprise

Rsc.IsEnterprise field

Shows whether a resource is from the enterprise resource pool (true) or the local resource pool (false).

public static readonly Key<NullableBool, RscKey> IsEnterprise;

Examples

Shows how to read/write Rsc.IsEnterprise property.

var project = new Project();

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

resource.Set(Rsc.IsEnterprise, true);

Console.WriteLine("Is Enterprise: " + resource.Get(Rsc.IsEnterprise));

See Also