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

AppointmentImages.Reminder Property

Provides access to settings of an image, representing the reminder.

Namespace: DevExpress.Web.ASPxScheduler

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

Declaration

public ImageProperties Reminder { 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, symbolizing a reminder attached to the appointment, is shown below.

Reminder

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

AppointmentImages images = ASPxScheduler1.Images.Appointment;
images.Reminder.Url = ImagePath + "ExternalReminder.png";
See Also