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.Finish Property

Maps the Finish property of all user events to a dataset field.

#Declaration

Delphi
property Finish: TcxFieldName index 2 read; write;

#Property Value

Type Description
TcxFieldName

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

#Remarks

Use the Finish property to store event finish times in a dataset field.

#Example

  cxSchedulerDBStorage1.FieldNames.Finish := mdEventFinish.FieldName;

Note

You need to bind the Finish property to the corresponding dataset field to be able to store user events in a data-aware scheduler storage component. The bound dataset field’s type must be TDateTimeField or TSQLTimeStampField.

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

See Also