IsRecurring

Tsk.IsRecurring field

Determines whether a task is part of a series of recurring tasks.

public static readonly Key<NullableBool, TaskKey> IsRecurring;

Examples

Shows how to read/write Tsk.IsRecurring property.

var project = new Project();

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

task.Set(Tsk.IsRecurring, true);

Console.WriteLine("Is Recurring: " + task.Get(Tsk.IsRecurring));

See Also