CalendarDatePicker.IsGroupLabelVisible Property

Definition

Gets or sets a value that indicates whether the month name is shown with the first day of the month in the picker's CalendarView.

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

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

Property Value

Boolean

bool

true if the month name is shown with the first day of the month; otherwise, false. The default is true.

Remarks

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

Applies to

See also