Skip to main content

TcxSchedulerDBStorageFieldNames.Start Property

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

Declaration

property Start: TcxFieldName index 13 read; write;

Property Value

Type Description
TcxFieldName

The name of the dataset field that stores event start times.

Remarks

Use the Start property to store event start times in a dataset field.

Example

  cxSchedulerDBStorage1.FieldNames.Start := mdEventStart.FieldName;

Note

You need to bind the Start 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 TDateTimeField or TSQLTimeStampField.

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

See Also