Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SchedulerControl.ShowEditAppointmentDependencyForm(AppointmentDependency, Boolean, CommandSourceType) Method

Invokes the Appointment Dependency form used to modify or delete a specified dependency.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v24.2.dll

NuGet Package: DevExpress.Win.Scheduler

#Declaration

public virtual DialogResult ShowEditAppointmentDependencyForm(
    AppointmentDependency dependency,
    bool readOnly,
    CommandSourceType commandSourceType
)

#Parameters

Name Type Description
dependency AppointmentDependency

An AppointmentDependency object that is the appointment dependency to modify or delete.

readOnly Boolean

True, to display a form as read-only; otherwise, false.

commandSourceType CommandSourceType

A CommandSourceType enumeration member that enables you to identify the source of the command to display a form.

#Returns

Type Description
DialogResult

A DialogResult enumeration value that is the return value of the dialog.

#Remarks

The ShowEditAppointmentDependencyForm method arguments are passed to the SchedulerControl.EditAppointmentDependencyFormShowing event handler as AppointmentDependencyFormEventArgs members.

The Appointment Dependency form is shown in the picture below.

AppointmentDependencyForm

See Also