MaskedTextProvider Constructor (String^, CultureInfo^, Char, Boolean)
.NET Framework (current version)
Initializes a new instance of the MaskedTextProvider class using the specified mask, culture, password character, and prompt usage value.
Assembly: System (in System.dll)
public: MaskedTextProvider( String^ mask, CultureInfo^ culture, wchar_t passwordChar, bool allowPromptAsInput )
Parameters
- mask
-
Type:
System::String^
A String that represents the input mask.
- culture
-
Type:
System.Globalization::CultureInfo^
A CultureInfo that is used to set region-sensitive separator characters.
- 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 , culture, allowPromptAsInput, '_', passwordChar, false)
.NET Framework
Available since 2.0
Available since 2.0
Show: