Skip to main content
A newer version of this page is available. .

GanttView.AllowSchedulingOnEditing Property

Gets or sets whether the GanttControl should recalculate task properties once a related task’s start date, progress, or duration has been modified. This is a dependency property.

Namespace: DevExpress.Xpf.Gantt

Assembly: DevExpress.Xpf.Gantt.v19.2.dll

Declaration

public bool AllowSchedulingOnEditing { get; set; }

Property Value

Type Description
Boolean

true, to recalculate task properties; otherwise, false.

Remarks

Once a task’s start date, progress, or duration has been modified, the GanttControl can recalculate related task positions and update the summary task positions, durations, and progress.

Gantt automatic

This functionality is available via the following API:

Member Description
AllowSchedulingOnEditing If enabled, the control re-schedules tasks after each task’s start date, progress, or duration modification.
ScheduleNode/ScheduleDependentNodes Call these methods to re-schedule tasks on demand if the previous option is disabled.
ScheduleAll() Call this method to re-schedule all the Gantt tasks.
TasksScheduled This event allows you to rollback the edit changes if they have become the reason for invalid links.
DeleteTask(TreeListNode) Use this method to delete a task and re-schedule the affected tasks.
See Also