windowsforms-devexpress-dot-xtrascheduler-dot-ui-dot-appointmentdependencytypeedit.md
Gets or sets a dependency type shown in the editor.
Namespace : DevExpress.XtraScheduler.UI
Assembly : DevExpress.XtraScheduler.v25.2.dll
NuGet Package : DevExpress.Win.Scheduler
[DXCategory("Behavior")]
public AppointmentDependencyType Type { get; set; }
<DXCategory("Behavior")>
Public Property Type As AppointmentDependencyType
| Type | Description |
|---|---|
| AppointmentDependencyType |
An AppointmentDependencyType enumeration value.
|
Available values:
| Name | Description |
|---|---|
| FinishToStart |
Dependent task cannot start before the Parent task is finished.
A data record for the appointment dependency of this type is shown above. The integer value of the enum is 0.
| | StartToStart |
Dependent task cannot start before the Parent task starts.
A data record for the appointment dependency of this type is shown above. The integer value of the enum is 1.
| | FinishToFinish |
Dependent task cannot finish before the Parent task is finished.
A data record for the appointment dependency of this type is shown above. The integer value of the enum is 2.
| | StartToFinish |
Dependent task cannot finish before the Parent task starts.
A data record for the appointment dependency of this type is shown above. The integer value of the enum is 3.
|
See Also
AppointmentDependencyTypeEdit Class