MaskedTextProvider::Add Method (Char)

 

Adds the specified input character to the end of the formatted string.

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

public:
bool Add(
	wchar_t input
)

Parameters

input
Type: System::Char

A Char value to be appended to the formatted string.

Return Value

Type: System::Boolean

true if the input character was added successfully; otherwise false.

The Add(Char) method adds the input character value to the first available position in the formatted string after the position that was last assigned, which is represented by the LastAssignedPosition property. This method will fail for any of the following reasons:

  • The input value, input, is not printable, or it does not match its corresponding mask element.

  • There are zero available edit positions in the formatted string, or there are no available edit positions after the last assigned position.

.NET Framework
Available since 2.0
Return to top
Show: