AppointmentImages.DayClock Property
Provides access to settings of an image, representing the day clock.
Namespace: DevExpress.Web.ASPxScheduler
Assembly: DevExpress.Web.ASPxScheduler.v24.2.dll
Declaration
Property Value
Type | Description |
---|---|
ImageProperties | An ImageProperties object, which defines image settings. |
Remarks
Use this property to customize the appointment appearance. The default image, used to display day time when the AppointmentDisplayOptions.TimeDisplayType is set to AppointmentTimeDisplayType.Clock, is shown below.
You can replace it with another image with the following code:
AppointmentImages images = ASPxScheduler1.Images.Appointment;
images.DayClock.Url = ImagePath + "ExternalDayClock.png";
See Also