MaskedTextProvider.IsPassword Property

Definition

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:

IsPassword is used by the ToDisplayString and ToString methods to determine whether to reveal the actual input characters or obscure them with PasswordChar.

Applies to

See also