Vcl.ExtCtrls.TLabeledEdit.PasswordChar

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property PasswordChar: Char read FPasswordChar write SetPasswordChar default 0;

C++

__property PasswordChar = {default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TLabeledEdit

Description

Indicates the character, if any, to display in place of the actual characters typed in the control.

Vcl.ExtCtrls.TLabeledEdit.PasswordChar inherits from Vcl.StdCtrls.TCustomEdit.PasswordChar. All content below this line refers to Vcl.StdCtrls.TCustomEdit.PasswordChar.

Indicates the character, if any, to display in place of the actual characters typed in the control.

Use the PasswordChar property to create an edit control that displays a special character in place of any entered text. If PasswordChar is set to the null character (ANSI character zero), the edit control displays its text normally. If PasswordChar is any other character, the edit control displays PasswordChar in place of each character typed. PasswordChar affects the appearance of the edit control only. The value of the Text property reflects the actual characters that are typed.

See Also