PercentComplete property

double? PercentComplete
Gets or sets the completeion percentage of the task. PercentComplete must be between 0 and 100.

Implementation

double? get PercentComplete =>
    this.PropertyBag[TaskSchema.PercentComplete] as double?;
void PercentComplete=(double? value)

Implementation

set PercentComplete(double? value) =>
    this.PropertyBag[TaskSchema.PercentComplete] = value;