windowsforms-devexpress-dot-xtrascheduler-dot-schedulercontrol-1b610275.md
Gets or sets the source of the images that can be displayed within appointments.
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.dll
NuGet Package : DevExpress.Win.Scheduler
[DefaultValue(null)]
public object AppointmentImages { get; set; }
<DefaultValue(Nothing)>
Public Property AppointmentImages As Object
| Type | Default | Description |
|---|---|---|
| Object | null |
An object providing images for the SchedulerControl.
|
By default, appointments display default images that are listed in the table below:
| Index | Image | Description |
|---|---|---|
| 0 | Represents the day clock (i.e. shows AM time). | |
| 1 | Represents the night clock (i.e. shows PM time). | |
| 2 | Indicates that the appointment is recurring. | |
| 3 | Indicates that the recurring appointment is changed. | |
| 4 | 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).
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