MaskedTextProvider Constructor (String^, Char, Boolean)

 

Initializes a new instance of the MaskedTextProvider class using the specified mask, password character, and prompt usage value.

Namespace:   System.ComponentModel
Assembly:  System (in System.dll)

public:
MaskedTextProvider(
	String^ mask,
	wchar_t passwordChar,
	bool allowPromptAsInput
)

Parameters

mask
Type: System::String^

A String that represents the input mask.

passwordChar
Type: System::Char

A Char that will be displayed for characters entered into a password string.

allowPromptAsInput
Type: System::Boolean

true to allow the prompt character as input; otherwise false.

Use of this constructor is exactly equivalent to the following call to the MaskedTextProvider::MaskedTextProvider(String^, CultureInfo^, Boolean, Char, Char, Boolean) constructor:

MaskedTextProvider(mask , null, allowPromptAsInput, '_', passwordChar, false)

.NET Framework
Available since 2.0
Return to top
Show: