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.OnGetReminderWindowCaption Event

In This Article

Fires when the Reminders window is about to be opened.

#Declaration

Delphi
property OnGetReminderWindowCaption: TcxSchedulerGetReminderWindowCaption read; write;

#Remarks

Implement the OnGetReminderWindowCaption event handler to provide a custom caption for the title of the Reminders window.

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

The ACaption parameter specifies the text, which will be shown in the Reminders window’s title.

To provide an end-user with information on reminders quantity, use the Sender‘s Count property, which specifies the number of reminders in the TcxSchedulerReminders collection. It can be shown in the Reminders window’s title, if concatenated with the string.

See Also