IsExpanded

Tsk.IsExpanded field

Determines whether a summary task is expanded or not in GanttChart view.

public static readonly Key<NullableBool, TaskKey> IsExpanded;

Examples

Shows how to read/write Tsk.IsExpanded property.

var project = new Project();

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

task.Set(Tsk.IsExpanded, true);

Console.WriteLine("Is Expanded: " + task.Get(Tsk.IsExpanded));

See Also