AppointmentViewInfo.BackColor Property
OBSOLETE
You should use the 'Appearance.BackColor' instead.
Gets or sets the appointment coloring. Use the Appearance.BackColor instead.
Namespace: DevExpress.XtraScheduler.Drawing
Assembly: DevExpress.XtraScheduler.v24.1.dll
NuGet Package: DevExpress.Win.Scheduler
Declaration
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("You should use the 'Appearance.BackColor' instead.", false)]
public Color BackColor { get; set; }
Property Value
Type | Description |
---|---|
Color | A Color object representing the appointment fill color. |
Remarks
By default, the appointment background color is specified by its AppointmentLabel. Handling the SchedulerControl.AppointmentViewInfoCustomizing event enables you to override this setting and specify a custom color for a particular appointment.
You can also use the SchedulerControl.CustomDrawAppointment event to paint an appointment manually.
See Also