MaskedTextProvider Constructor (String^, CultureInfo^)

 

Initializes a new instance of the MaskedTextProvider class using the specified mask and culture.

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

public:
MaskedTextProvider(
	String^ mask,
	CultureInfo^ culture
)

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.

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

.NET Framework
Available since 2.0
Return to top
Show: