Skip to main content

DateNavigator.HighlightSpecialDates Property

Gets or sets a value indicating whether the special dates should be shown bold.

Namespace: DevExpress.Xpf.Editors.DateNavigator

Assembly: DevExpress.Xpf.Core.v14.2.dll

#Declaration

public bool HighlightSpecialDates { get; set; }

#Property Value

Type Description
Boolean

true to bold the special dates; otherwise, false.

#Remarks

Use the HighlightSpecialDates property to specify whether DateNavigator.SpecialDates should be marked as bold in the DateNavigator control.

DateNavigator_HighlightSpecialDates

NOTE

Use the HighlightSpecialDates property to bold the dates with appointments within the DateNavigator control if it is bound to the SchedulerControl.

#Examples

This example demonstrates how to customize the DateNavigator control. To do this, it is necessary to modify the DateNavigator object.

<dxe:DateNavigator HighlightSpecialDates="True"
                   HighlightHolidays="True"
                   ShowTodayButton="True"
                   ShowWeekNumbers="True"
                   WeekNumberRule="FirstDay"
                   FirstDayOfWeek="Sunday"
                   IsMultiSelect="True"
                   MaxSelectionLength="3"/>
See Also