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

TcxCustomEditPropertiesValues Class

Contains the property flags that indicate which editor-specific properties have been changed.

#Declaration

Delphi
TcxCustomEditPropertiesValues = class(
    TPersistent
)

#Remarks

The TcxCustomEditPropertiesValues class is the base class for all classes that track changes made to the editor-specific properties. This class only tracks the changes made to the read-only state of an editor. Once an editor’s ReadOnly property is set to a value other than the default one, the changes are reflected in the TcxCustomEditPropertiesValues class (its corresponding property flag is set to True). To reset the changes made and reverse the ReadOnly property back to its default value, call the RestoreDefaults method or set the corresponding property flag to False. The TcxCustomEditPropertiesValues class also provides the BeginUpdate and EndUpdate methods which are used to control when the editor repaints and avoid any flickering when the property flags are modified.

#Inheritance

TObject
TPersistent
TcxCustomEditPropertiesValues
See Also