TcxSchedulerDBStorageFieldNames.ActualFinish Property
In This Article
Maps the ActualFinish property of all user events to an integer dataset field.
#Declaration
Delphi
property ActualFinish: TcxFieldName index 15 read; write;
#Property Value
Type | Description |
---|---|
Tcx |
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
Note
The bound dataset field’s type must be TInteger
The ActualFinish
property’s default value is an empty string.
See Also