Skip to main content

TcxEditEchoMode Enum

Enumerates text display modes available in text-based editors.

Declaration

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