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

TcxCustomEdit.Properties Property

Provides access to editor settings.

#Declaration

Delphi
property Properties: TcxCustomEditProperties read; write;

#Property Value

Type Description
TcxCustomEditProperties

Stores editor settings.

If you access an editor instance as a TcxCustomEdit object, you need to cast the Properties property value to the corresponding editor settings class to be able to access all public API members.

Call the Properties.ClassType function to identify the actual editor settings class. Alternatively, you can call the GetPropertiesClass function.

Refer to the TcxCustomEditProperties class description for the full list of editor settings classes.

#Remarks

You can use the Properties property to access and customize editor settings if the RepositoryItem property is unspecified. If a repository item is assigned to the RepositoryItem property, all settings accessible through the Properties property have no effect on the editor.

All TcxCustomEdit class descendants override the Properties property to implement editor settings specific to the actual editor type.

Tip

You can use the ActiveProperties property to identify settings that currently affect the editor.

See Also