IsRollup

Tsk.IsRollup field

Determines whether information about the subtask Gantt bars will be rolled up to the summary task bar.

public static readonly Key<NullableBool, TaskKey> IsRollup;

Examples

Shows how to read/write Tsk.IsRollup property.

var project = new Project();

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

task.Set(Tsk.IsRollup, true);

Console.WriteLine("Is Rollup: " + task.Get(Tsk.IsRollup));

See Also