Skip to main content

AppointmentImages.DayClock Property

Provides access to settings of an image, representing the day clock.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v23.2.dll

NuGet Package: DevExpress.Web.Scheduler

Declaration

public ImageProperties DayClock { get; }

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.

DayClock

You can replace it with another image with the following code:

AppointmentImages images = ASPxScheduler1.Images.Appointment;
images.DayClock.Url = ImagePath + "ExternalDayClock.png";
See Also