MaskedTextProvider.IsPassword Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that determines whether password protection should be applied to the formatted string.
public:
property bool IsPassword { bool get(); void set(bool value); };
public bool IsPassword { get; set; }
member this.IsPassword : bool with get, set
Public Property IsPassword As Boolean
Property Value
true
if the input string is to be treated as a password string; otherwise, false
. The default is false
.
Remarks
Password protection can be initiated using one of the following two ways:
Setting the PasswordChar property to a non-
null
value.Setting the IsPassword property to
true
, which also sets the PasswordChar property to the DefaultPasswordChar value.
IsPassword is used by the ToDisplayString and ToString methods to determine whether to reveal the actual input characters or obscure them with PasswordChar.