Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SchedulerControl.MoreButtonClicked Event

Occurs when the More Button is clicked.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v24.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