Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxSchedulerDBStorageFieldNames.ActualStart Property

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

#Declaration

Delphi
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