vcl-cxschedulerdbstorage-dot-tcxschedulerdbstoragefieldnames.md
Maps the ActualFinish property of all user events to an integer dataset field.
property ActualFinish: TcxFieldName index 15 read; write;
| Type | Description |
|---|---|
| TcxFieldName |
The name of the dataset field that stores event finish times as integer values.
|
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.
cxSchedulerDBStorage1.FieldNames.ActualFinish := mdEventActualFinish.FieldName;
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
TcxSchedulerDBStorageFieldNames Class