Skip to main content

TcxSchedulerDBStorageFieldNames.EventType Property

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

Declaration

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