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

TcxDateTimeWheelPickerPropertiesValues Class

Contains the property flags that indicate which properties specific to the date-time wheel picker editor have been assigned.

#Declaration

Delphi
TcxDateTimeWheelPickerPropertiesValues = class(
    TcxCustomEditPropertiesValues
)

#Remarks

This class tracks the changes made to the editor’s Properties.MinDate and Properties.MaxDate properties and allows you to undo them. Once the property being tracked is assigned a value, the corresponding property flag is set to True. To undo the change and revert the property to its default value, set the corresponding property flag to False. Alternatively, you can call the RestoreDefaults method to reset all TcxDateTimeWheelPickerPropertiesValues property flags and revert their associated properties to default values. Enclose the code that modifies individual property flags within the BeginUpdate/EndUpdate method blocks to control when the editor repaints and avoid flickering during the modifications. The RestoreDefaults method calls these methods automatically.

#Inheritance

TObject
TPersistent
TcxCustomEditPropertiesValues
TcxDateTimeWheelPickerPropertiesValues
See Also