IsPublished

Tsk.IsPublished field

Determines whether the current task should be published to Project Server with the rest of the project.

public static readonly Key<NullableBool, TaskKey> IsPublished;

Examples

Shows how to read/write Tsk.IsPublished property.

var project = new Project();

var task = project.RootTask.Children.Add("Task");

task.Set(Tsk.IsPublished, true);

Console.WriteLine("Is Published: " + task.Get(Tsk.IsPublished));

See Also