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

In This Article

Fires when a formatted time string is about to be returned by the GetEventDueTimeText method.

#Declaration

Delphi
property OnGetEventDueTimeText: TcxSchedulerGetEventDueTimeTextEvent read; write;

#Remarks

Implement the OnGetEventDueTimeText event handler to customize the time string before it is returned to the caller by the GetEventDueTimeText method.

The Sender parameter specifies the TcxSchedulerReminders collection, which contains the AReminder instance;

The AReminder parameter specifies the reminder instance, which the time string belongs to;

The ADueTimeInfo parameter provides information on the reminder, such as the reminder’s state, unit of time measure, time-out value, etc.;

The AText parameter specifies the formatted time string to be returned by the GetEventDueTimeText method.

See Also