Vcl.Mask.TMaskEdit.PasswordChar
Delphi
property PasswordChar: Char read FPasswordChar write SetPasswordChar default 0;
C++
__property PasswordChar = {default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | Vcl.Mask.pas Vcl.Mask.hpp |
Vcl.Mask | TMaskEdit |
Description
Indicates the character, if any, to display in place of the actual characters typed in the control.
Vcl.Mask.TMaskEdit.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.