CalendarDatePicker.IsOutOfScopeEnabled Property

Definition

Gets or sets a value that indicates whether out-of-scope calendar items are shown with a unique foreground color in the picker's CalendarView.

public:
 property bool IsOutOfScopeEnabled { bool get(); void set(bool value); };
bool IsOutOfScopeEnabled();

void IsOutOfScopeEnabled(bool value);
public bool IsOutOfScopeEnabled { get; set; }
var boolean = calendarDatePicker.isOutOfScopeEnabled;
calendarDatePicker.isOutOfScopeEnabled = boolean;
Public Property IsOutOfScopeEnabled As Boolean
<CalendarDatePicker IsOutOfScopeEnabled="bool" .../>

Property Value

Boolean

bool

true if out-of-scope calendar items are shown with a unique color; false if they are shown with the same color as in-scope items. The default is true.

Remarks

This property affects the CalendarDatePicker's internal CalendarView. For more info, see CalendarView.IsOutOfScopeEnabled.

Applies to

See also