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

TcxSchedulerReminders.OnOpenEvent Event

In This Article

Fires when the Open Item button (located in the Reminders window) has been clicked.

#Declaration

Delphi
property OnOpenEvent: TcxSchedulerReminderOpenEvent read; write;

#Remarks

Implement the OnOpenEvent event handler to display the Open Item button in the Reminders window and provide custom behavior when this button has been clicked by an end-user.

The Sender parameter specifies the TcxSchedulerReminders collection, which contains timed out reminders, if any;

The AEvent parameter specifies the in-memory user event instance, which an end-user selects from the alert list (if it exists) in the Reminders window.

The Open Item button only appears if the OnOpenEvent event handler is assigned:

This is the sample code for the OnOpenEvent event handler which initializes the Event dialog after the Open Item button has been clicked:

Delphi
// ...
procedure TForm1.StorageRemindersOpenEvent(Sender: TcxSchedulerReminders; AEvent: TcxSchedulerControlEvent);
begin
  Scheduler.EditEventUsingDialog(AEvent);
end;
See Also