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

cxRecurrenceInfoDataToString(TcxSchedulerCustomRecurrenceInfoData) Method

Converts a specified TcxSchedulerCustomRecurrenceInfoData record to a string.

#Declaration

Delphi
function cxRecurrenceInfoDataToString(const AData: TcxSchedulerCustomRecurrenceInfoData): AnsiString;

#Parameters

Name Type
AData TcxSchedulerCustomRecurrenceInfoData

#Returns

Type
AnsiString

#Remarks

The TcxSchedulerCustomRecurrenceInfoData record holds information on the recurrence details. The TcxSchedulerCustomRecurrenceInfoData record’s data is stored in the data store in binary format (in the dataset field of BLOB type).

Before sending the data to the data store copy bytes from the memory segment allocated by the TcxSchedulerCustomRecurrenceInfoData record into the string that is used as a buffer between the record and the data store. After that you can post binary data from the string to the data store.

Call the cxRecurrenceInfoDataToString function to obtain the content of the TcxSchedulerCustomRecurrenceInfoData record passed as the AData parameter as a string.

See Also