Skip to main content

AppointmentDisplayTextEventArgs.Description Property

Gets or sets the text that will be displayed as an appointment’s description.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.Core.Desktop.dll

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

public string Description { get; set; }

Property Value

Type Description
String

A String value which represents the description displayed for the appointment.

Remarks

Handle the SchedulerControl.InitAppointmentDisplayText event and then use the Description property to customize the description of the appointment before it’s displayed. To change the displayed text of the appointment (its subject and location together) the AppointmentDisplayTextEventArgs.Text property should be used.

AppointmentDisplayTextEventArgs.png

Note

The current appointment to be displayed is accessed via the AppointmentEventArgs.Appointment property.

See Also