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

TcxAcceptEventExportFunc Type

Provides a callback reference to a function that verifies whether the scheduler’s user event can be exported to Microsoft Outlook® before it is actually exported.

#Declaration

Delphi
TcxAcceptEventExportFunc = function(AEvent: TcxSchedulerEvent): Boolean;

#Parameters

Name Type
AEvent TcxSchedulerEvent

#Referenced Class

Type
Boolean

#Remarks

The TcxAcceptEventExportFunc function reference enables a user-defined validation function to be implemented which for example, checks that the scheduler’s user events match a particular criteria prior to these user events being exported to Microsoft Outlook®. The function implemented should return a value of True to allow the user events to be exported. If the conditions required aren’t met False must be returned to cancel the export.

The AEvent parameter specifies the scheduler’s user event, which will be exported to Microsoft Outlook®.

See Also