Click or drag to resize

TskPercentWorkComplete Field

The current status of a task expressed as the percentage of work that has been completed.

Namespace:  Aspose.Tasks
Assembly:  Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntax
public static readonly Key<int, TaskKey> PercentWorkComplete

Field Value

Type: KeyInt32, TaskKey
Examples
Shows how to read/write Tsk.PercentWorkComplete property.
var project = new Project();

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

task.Set(Tsk.PercentWorkComplete, 10);

Console.WriteLine("Percent Work Complete: " + task.Get(Tsk.PercentWorkComplete));
See Also