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

TcxTimeEditTimeFormat Enum

Describes the formats of time editor values.

#Declaration

Delphi
TcxTimeEditTimeFormat = (
    tfHourMinSec,
    tfHourMin,
    tfHour
);

#Members

Name
tfHourMinSec
tfHourMin
tfHour

#Remarks

The TcxTimeEditFormat type enumerates possible format types for displaying time values. The format for time values is set via the TimeFormat member of the TcxCustomTimeEdit.Properties object.

The following table lists time formats.

Value Meaning
tfHourMinSec Hours, minutes and seconds are displayed within the time editor.
tfHourMin Hours and minutes are displayed within the time editor.
tfHour Hours are displayed within the time editor.
See Also