Skip to main content

SchedulerControl.AppointmentImages Property

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

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.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