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

ASPxScheduler.InitAppointmentDisplayText Event

Enables custom text and a description to be displayed within appointments.

Namespace: DevExpress.Web.ASPxScheduler

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

Declaration

public event AppointmentDisplayTextEventHandler InitAppointmentDisplayText

Event Data

The InitAppointmentDisplayText event's data class is AppointmentDisplayTextEventArgs. The following properties provide information specific to this event:

Property Description
Appointment Provides access to the appointment for which the SchedulerControl.InitAppointmentDisplayText event is fired.
Description Gets or sets the text that will be displayed as an appointment’s description.
Text Gets or sets the text that will be displayed as the appointment’s text (subject and location together).
ViewInfo Provides access to the characteristics of the appointment prepared for display.

Remarks

The InitAppointmentDisplayText event occurs before an appointment is rendered when its text and description are initialized. This event lets you display custom text and description within appointments.

See Also