Skip to main content

TcxSchedulerDBStorageFieldNames.ActualStart Property

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

Declaration

property ActualStart: TcxFieldName index 16 read; write;

Property Value

Type Description
TcxFieldName

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

Remarks

Use the ActualStart property to store event start times as integer values in a dataset field.

If a record in a dataset stores regular user event data, the mapped field stores a user event’s start date. If the record stores recurrent event data, the mapped field stores the start date of the first event occurrence in a chain.

Example

  cxSchedulerDBStorage1.FieldNames.ActualStart := mdEventActualStart.FieldName;

Note

The bound dataset field’s type must be TIntegerField.

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

See Also