Skip to main content

TcxSchedulerDBStorageFieldNames.ActualFinish Property

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

Declaration

property ActualFinish: TcxFieldName index 15 read; write;

Property Value

Type Description
TcxFieldName

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

Remarks

Use the ActualFinish property to store event finish times as integer values in a dataset field.

If a record in a dataset stores regular user event data, the mapped field stores the value of DateOf(Event.Finish) + 1. If the record stores recurrent event data, the mapped field stores the finish date of the last event occurrence or the cxMaxDate value if the occurrence chain is unbound.

Example

  cxSchedulerDBStorage1.FieldNames.ActualFinish := mdEventActualFinish.FieldName;

Note

The bound dataset field’s type must be TIntegerField.

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

See Also