SchedulerControl.AppointmentImages Property
In This Article
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
#Property Value
Type | Default | Description |
---|---|---|
Object | null | An object providing images for the Scheduler |
#Remarks
By default, appointments display default images that are listed in the table below:
Index | Image | Description |
---|---|---|
0 | ![]() |
Represents the day clock (i. |
1 | ![]() |
Represents the night clock (i. |
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:
- ImageCollection - Supports image transparency.
- SharedImageCollection - Supports image transparency. Allows you to share images between controls within multiple forms.
- SvgImageCollection - Stores vector icons that can scale without losing their quality on high resolution devices.
- ImageList.
See Also