Skip to main content

TcxCustomEdit.Properties Property

Provides access to editor settings.

Declaration

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