Tsk.IsSubproject
Tsk.IsSubproject field
Determines whether a task is an inserted project.
public static readonly Key<bool, TaskKey> IsSubproject;
Examples
Shows how to read/write Tsk.IsSubproject property.
var project = new Project();
var task = project.RootTask.Children.Add("Task");
task.Set(Tsk.IsSubproject, true);
Console.WriteLine("Is Subproject: " + task.Get(Tsk.IsSubproject));
See Also
- struct Key<T,K>
- enum TaskKey
- class Tsk
- namespace Aspose.Tasks
- assembly Aspose.Tasks