MicrosoftProjectServerURL

Prj.MicrosoftProjectServerURL field

Determines whether a project was created by a Project Server user as opposed to an NT user.

public static readonly Key<NullableBool, PrjKey> MicrosoftProjectServerURL;

Examples

Shows how to read/write Prj.MicrosoftProjectServerURL property.

var project = new Project();

project.Set(Prj.MicrosoftProjectServerURL, true);

Console.WriteLine("Microsoft Project Server U R L: " + project.Get(Prj.MicrosoftProjectServerURL));

See Also