AppointmentImages.NightClock Property
Provides access to settings of an image, representing the night 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 night 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.NightClock.Url = ImagePath + "ExternalNightClock.png";
See Also