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.EventType Property

Maps the EventType property of all user events to an integer dataset field.

#Declaration

Delphi
property EventType: TcxFieldName index 1 read; write;

#Property Value

Type Description
TcxFieldName

The name of the dataset field that stores event types as integer values.

#Remarks

Use the EventType property to store event types as integer values in a dataset field.

#Example

  cxSchedulerDBStorage1.FieldNames.EventType := mdEventType.FieldName;

Note

You need to bind the EventType property to the corresponding dataset field to be able to store user events in a data-aware scheduler storage component. The bound dataset field’s type must be TIntegerField.

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

See Also