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

AppointmentDependencyType Enum

Specifies when a task should start and end in relation to another task.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.1.Core.dll

Declaration

public enum AppointmentDependencyType

Members

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.

Related API Members

The following properties accept/return AppointmentDependencyType values:

Library Related API Members
Cross-Platform Class Library AppointmentDependency.Type
WinForms Controls AppointmentDependencyFormController.DependencyType
AppointmentDependencyTypeEdit.Type

Remarks

The default (and the most common) dependency type is AppointmentDependencyType.FinishToStart.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AppointmentDependencyType enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also