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

AppointmentDependencyFormController.DependencyType Property

Gets or sets the type of the appointment dependency currently being edited.

Namespace: DevExpress.XtraScheduler.UI

Assembly: DevExpress.XtraScheduler.v19.1.dll

Declaration

public AppointmentDependencyType DependencyType { 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.

Remarks

The default AppointmentDependencyForm utilizes the AppointmentDependencyTypeEdit control to select the AppointmentDependency.Type of the appointment dependency. When the DependencyType changes, the AppointmentDependencyFormController.PropertyChanged event occurs.

See Also