Skip to main content

SchedulerViewBase.MoreButtonsVisibility Property

Gets or sets the visibility state of More buttons in the current View. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public MoreButtonVisibility MoreButtonsVisibility { get; set; }

Property Value

Type Description
MoreButtonVisibility

A DevExpress.Xpf.Scheduling.MoreButtonVisibility enumeration value specifying when the More buttons are visible.

Available values:

Name Description
Auto

More buttons are shown when some appointments for the current time interval are not visible because of the SchedulerControl‘s size.

Always

More buttons are always visible.

Never

More buttons are always hidden.

Remarks

Use the MoreButtonsVisibility property to specify whether the current view should display or hide the More buttons. The More buttons switch the scheduler to a more detailed view or scroll to subsequent appointments. Click the More button in the Month View to switch the scheduler to the Day View.

The MoreButtonsVisibility property is set to MoreButtonVisibility.Auto by default, so the scheduler displays the More buttons for appointments that do not fit in the current time interval.

See Also