Skip to main content

AppointmentDependencyTypeEdit.Type Property

Gets or sets a dependency type shown in the editor.

Namespace: DevExpress.XtraScheduler.UI

Assembly: DevExpress.XtraScheduler.v23.2.dll

NuGet Package: DevExpress.Win.Scheduler

Declaration

[DXCategory("Behavior")]
public AppointmentDependencyType Type { get; set; }

Property Value

Type Description
AppointmentDependencyType

An AppointmentDependencyType enumeration value.

Available values:

Name Description
FinishToStart

Dependent task cannot start before the Parent task is finished.

Dependency-FinishToStart

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.

Dependency-StartToStart

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.

Dependency-FinishToFinish

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.

Dependency-StartToFinish

A data record for the appointment dependency of this type is shown above. The integer value of the enum is 3.

See Also