windowsforms-devexpress-dot-xtraeditors-dot-controls-dot-calendarcontrolbase-f14380f5.md
Gets or sets whether calendar date ranges are selected strictly from day to day being clicked, or through the entire weeks containing those days.
Namespace : DevExpress.XtraEditors.Controls
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(CalendarSelectionBehavior.Simple)]
[DXCategory("Behavior")]
public CalendarSelectionBehavior SelectionBehavior { get; set; }
<DefaultValue(CalendarSelectionBehavior.Simple)>
<DXCategory("Behavior")>
Public Property SelectionBehavior As CalendarSelectionBehavior
| Type | Default | Description |
|---|---|---|
| CalendarSelectionBehavior | Simple |
A CalendarSelectionBehavior enumeration value that specifies how an end-user selects date ranges.
|
Available values:
| Name | Description |
|---|---|
| Simple |
Does not automatically extend the selection to the week’s start and end.
| | OutlookStyle |
Selects entire weeks
|
If multiple dates can be selected simultaneously (see CalendarControlBase.SelectionMode), the SelectionBehavior property allows you to specify whether an end-user selects date ranges strictly from day to day being clicked (the default simple style), or the selection is automatically extended through the entire weeks containing those days (the Outlook-inspired style). See the figures below.
See Also
SelectionBehavior