Skip to main content
A newer version of this page is available. .

AppointmentImages.NightClock Property

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

Namespace: DevExpress.Web.ASPxScheduler

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

Declaration

public ImageProperties NightClock { 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 night time when the AppointmentDisplayOptions.TimeDisplayType is set to AppointmentTimeDisplayType.Clock, is shown below.

NightClock

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

AppointmentImages images = ASPxScheduler1.Images.Appointment;
images.NightClock.Url = ImagePath + "ExternalNightClock.png";
See Also