Skip to main content
A newer version of this page is available. .

SchedulerControl.MoreButtonClicked Event

Occurs when the More Button is clicked.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v20.2.dll

NuGet Package: DevExpress.Win.Scheduler

Declaration

public event MoreButtonClickedEventHandler MoreButtonClicked

Event Data

The MoreButtonClicked event's data class is MoreButtonClickedEventArgs. The following properties provide information specific to this event:

Property Description
Handled Gets or sets whether an event is handled. If it is handled, default actions are not required.
Interval Gets time interval of the cell where the button is located.
Resource Gets the resource associated with the cell where the button is located.
TargetViewStart Gets or sets the top row time of the target view.

Remarks

Event arguments provide information on the time interval of the cell where the “More” button is located, on the Resource object associated with the time cell and the top visible time of the view to which the scheduler navigates.

To cancel the default action (in the Day View - navigation to the out of sight appointment, in the Month View - switching to the Day view), set the MoreButtonClickedEventArgs.Handled property value to true.

See Also