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

TcxEditEchoMode Enum

Enumerates text display modes available in text-based editors.

#Declaration

Delphi
TcxEditEchoMode = (
    eemNormal,
    eemPassword
);

#Members

Name Description
eemNormal

The editor displays characters as is.

eemPassword

The password input mode is active. The text-based editor displays password characters instead of user input. You can set the ShowPasswordRevealButton property to True to display the Password Reveal button that allows users to see the entered characters.

In this mode, you can use the PasswordChar property to define a custom password character. If the PasswordChar property has the default value, the editor’s LookAndFeel.NativeStyle property value determines the displayed password characters. If this property is set to True or False, the editor displays bullets or asterisks as password characters, respectively.

#Remarks

A text-based editor’s Properties.EchoMode and ActiveProperties.EchoMode properties reference the TcxEditEchoMode type.

See Also