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

AppointmentDisplayTextEventArgs.Description Property

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

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.2.Core.dll

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Description property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also