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.AppointmentImages Property

Gets or sets the source of the images that can be displayed within appointments.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v24.2.dll

NuGet Package: DevExpress.Win.Scheduler

#Declaration

[DefaultValue(null)]
public object AppointmentImages { get; set; }

#Property Value

Type Default Description
Object null

An object providing images for the SchedulerControl.

#Remarks

By default, appointments display default images that are listed in the table below:

Index Image Description
0 AppointmentImageType.DayClock Represents the day clock (i.e. shows AM time).
1 AppointmentImageType.NightClock Represents the night clock (i.e. shows PM time).
2 AppointmentImageType.Recurrence Indicates that the appointment is recurring.
3 AppointmentImageType.RecurrenceException Indicates that the recurring appointment is changed.
4 AppointmentImageType.Reminder Indicates that the appointment has a Reminder.

The AppointmentImages property allows custom images to be displayed within appointments, instead of the defaults (see the image below).

AppointmentImages

You can also handle the SchedulerControl.InitAppointmentImages event to specify additional images to be displayed within the appointments.

The AppointmentImages property accepts the following image collections:

See Also