windowsforms-devexpress-dot-xtragantt-dot-ganttcontrol-76ac9377.md
Fires when a user finishes modifying progress. Allows you to cancel the operation.
Namespace : DevExpress.XtraGantt
Assembly : DevExpress.XtraGantt.v25.2.dll
NuGet Package : DevExpress.Win.Gantt
[DXCategory("Events")]
public event TaskProgressModificationEventHandler TaskProgressModificationCompleted
<DXCategory("Events")>
Public Event TaskProgressModificationCompleted As TaskProgressModificationEventHandler
The TaskProgressModificationCompleted event's data class is TaskProgressModificationEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| CurrentProgress | Gets or sets the processed task’s current (during the operation) progress. |
| OriginalProgress | Gets the processed task’s original (before the operation) progress. |
| ProcessedNode | Gets the modified node. Inherited from TaskModificationEventArgs. |
| ProcessedTask | Gets the modified task. Inherited from TaskModificationEventArgs. |
| TaskSplitInfo | Gets information about segments of the processed split task. Inherited from TaskModificationEventArgs. |
If the AllowModifyProgress option is enabled, users can update a task’s progress.
Note
The Editable option must be enabled and the ReadOnly option must be disabled to allow users to modify tasks.
You can handle the following events to customize an operation:
TaskProgressModificationCompleted — fires when a user finishes modifying progress. Allows you to cancel the operation.See Interactive Editing for more information.
See Also