MaskedTextProvider Constructor (String^, Boolean)

 

Initializes a new instance of the MaskedTextProvider class using the specified mask and ASCII restriction value.

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

public:
MaskedTextProvider(
	String^ mask,
	bool restrictToAscii
)

Parameters

mask
Type: System::String^

A String that represents the input mask.

restrictToAscii
Type: System::Boolean

true to restrict input to ASCII-compatible characters; otherwise false to allow the entire Unicode set.

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, true, '_', '\0', restrictToASCII)

.NET Framework
Available since 2.0
Return to top
Show: