MaskedTextProvider::VerifyEscapeChar Method (Char, Int32)
Tests whether the specified character would be escaped at the specified position.
Assembly: System (in System.dll)
Parameters
- input
-
Type:
System::Char
The Char value to test.
- position
-
Type:
System::Int32
The position in the mask to test the input character against.
Return Value
Type: System::Booleantrue if the specified character would be escaped at the specified position; otherwise, false.
A character is said to be escaped if it is valid input, but is not assigned to that position in the formatted string. Escaped characters fall into the following three categories:
Prompt characters are escaped if the AllowPromptAsInput property is true.
Input characters are escaped if they have the same value as the literal in the mask, and if the SkipLiterals property is true.
Space characters are escaped if the ResetOnSpace property is true.
The VerifyEscapeChar method will also return false if the pos parameter is less than zero or greater than the Length of the Mask.
Available since 2.0