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

TcxCurrencyEditPropertiesValues Class

Contains the property flags that indicate which properties specific to a currency editor have been changed.

#Declaration

Delphi
TcxCurrencyEditPropertiesValues = class(
    TcxTextEditPropertiesValues
)

#Remarks

The TcxCurrencyEditPropertiesValues class tracks the changes made to the DecimalPlaces, EditFormat, MaxLength, MaxValue, MinValue and ReadOnly properties of a currency editor. Once one of these properties is set to a value other than the default one, the changes are reflected in the TcxCurrencyEditPropertiesValues class (its corresponding property flag is set to True). To undo the changes made and reverse the property back to its default value, set the corresponding property flag to False or call the RestoreDefaults method to reverse all these properties back to their default values and reset all the property flags. Use the BeginUpdate and EndUpdate methods to control when the editor repaints and avoid any flickering when the property flags are modified.

See Also