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

TcxSchedulerDBStorageFieldNames.Caption Property

Maps the Caption property of all user events to a string dataset field.

#Declaration

Delphi
property Caption: TcxFieldName index 0 read; write;

#Property Value

Type Description
TcxFieldName

The name of the dataset field that stores user event captions.

#Remarks

Use the Caption property to store user event captions in a string dataset field.

#Example

  cxSchedulerDBStorage1.FieldNames.Caption := mdEventCaption->FieldName;

Note

The bound dataset field must meet the following requirements:

  • The field type is TIntegerField.
  • The NULL value is allowed for the field if a user event’s EventType property is set to etCustom.

The Caption property’s default value is an empty string.

See Also