Skip to main content
All docs
V25.1
  • GanttControl.TaskProgressModified Event

    Fires when a task’s progress is successfully modified. This event only fires when a user modifies a task in the chart. When the user modifies a task in the task list, the event does not fire.

    Namespace: DevExpress.XtraGantt

    Assembly: DevExpress.XtraGantt.v25.1.dll

    NuGet Package: DevExpress.Win.Gantt

    Declaration

    [DXCategory("Events")]
    public event TaskProgressModifiedEventHandler TaskProgressModified

    Event Data

    The TaskProgressModified event's data class is TaskProgressModifiedEventArgs. The following properties provide information specific to this event:

    Property Description
    CurrentProgress Gets the processed task’s current (after 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.

    Remarks

    If the AllowModifyProgress option is enabled, users can update a task’s progress.

    image

    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:

    See Interactive Editing for more information.

    See Also