AppointmentImages.DayClock Property
In This Article
Provides access to settings of an image, representing the day clock.
Namespace: DevExpress.Web.ASPxScheduler
Assembly: DevExpress.Web.ASPxScheduler.v24.2.dll
NuGet Package: DevExpress.Web.Scheduler
#Declaration
public ImageProperties DayClock { get; }
#Property Value
Type | Description |
---|---|
Image |
An Image |
#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