Back to Devexpress

AppointmentResourceEdit.SchedulerControl Property

windowsforms-devexpress-dot-xtrascheduler-dot-ui-dot-appointmentresourceedit.md

latest4.0 KB
Original Source

AppointmentResourceEdit.SchedulerControl Property

Gets or sets the scheduler control assigned to the AppointmentResourceEdit.

Namespace : DevExpress.XtraScheduler.UI

Assembly : DevExpress.XtraScheduler.v25.2.dll

NuGet Package : DevExpress.Win.Scheduler

Declaration

csharp
[DefaultValue(null)]
public SchedulerControl SchedulerControl { get; set; }
vb
<DefaultValue(Nothing)>
Public Property SchedulerControl As SchedulerControl

Property Value

TypeDefaultDescription
SchedulerControlnull

A SchedulerControl object representing the scheduler whose resources will be shown in this combo box.

|

Remarks

Use this property to assign a SchedulerControl object to a AppointmentResourceEdit object when creating a scheduling application. After a Scheduler Control has been assigned to the Appointment Resource Edit control, the Appointment Resource Edit control can be used to select the resource of the scheduler.

The following code snippets (auto-collected from DevExpress Examples) contain references to the SchedulerControl property.

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.

winforms-scheduler-localizer-translate-ui/CS/SchedulerLocalizerExample/OutlookAppointmentForm.cs#L65

csharp
this.edtResource.SchedulerControl = control;
this.edtResource.Storage = storage;

winforms-scheduler-custom-appointment-edit-form/CS/SchedulerDbExample/CustomAppointmentForm.cs#L59

csharp
this.edtLabel.Storage = storage;
this.edtResource.SchedulerControl = control;
this.edtResource.Storage = storage;

winforms-scheduler-localizer-translate-ui/VB/SchedulerLocalizationExample_VB/OutlookAppointmentForm.vb#L62

vb
Me.edtResource.SchedulerControl = control
Me.edtResource.Storage = m_storage

winforms-scheduler-custom-appointment-edit-form/VB/SchedulerDbExample/CustomAppointmentForm.vb#L69

vb
Me.edtLabel.Storage = storage_Renamed
Me.edtResource.SchedulerControl = control
Me.edtResource.Storage = storage_Renamed

See Also

AppointmentResourceEdit Class

AppointmentResourceEdit Members

DevExpress.XtraScheduler.UI Namespace