Early Preview
This is currently very much a preview. Please feel free to try things out,
but don't be upset if anything is not yet working. Feedback is welcome over on our
GitHub Dicussions page.
enum System.​ComponentModel.​MaskedTextResultHint
Assembly: System.ComponentModel.TypeConverter
Specifies values that succinctly describe the results of a masked text parsing operation.
Values
PositionOutOfRange
Operation did not succeed. The specified position is not in the range of the target string; typically it is either less than zero or greater then the length of the target string.
NonEditPosition
Operation did not succeed. The current position in the formatted string is a literal character.
UnavailableEditPosition
Operation did not succeed. There were not enough edit positions available to fulfill the request.
PromptCharNotAllowed
Operation did not succeed. The prompt character is not valid at input, perhaps because the <see cref="P:System.ComponentModel.MaskedTextProvider.AllowPromptAsInput" /> property is set to <see langword="false" /> .
InvalidInput
Operation did not succeed. The program encountered an input character that was not valid. For more information about characters that are not valid, see the <see cref="M:System.ComponentModel.MaskedTextProvider.IsValidInputChar(System.Char)" /> method.
SignedDigitExpected
Operation did not succeed. An input character was encountered that was not a signed digit.
LetterExpected
Operation did not succeed. An input character was encountered that was not a letter.
DigitExpected
Operation did not succeed. An input character was encountered that was not a digit.
AlphanumericCharacterExpected
Operation did not succeed.An input character was encountered that was not alphanumeric. .
AsciiCharacterExpected
Operation did not succeed.An input character was encountered that was not a member of the ASCII character set.
Unknown
Unknown. The result of the operation could not be determined.
CharacterEscaped
Success. The operation succeeded because a literal, prompt or space character was an escaped character. For more information about escaped characters, see the <see cref="M:System.ComponentModel.MaskedTextProvider.VerifyEscapeChar(System.Char,System.Int32)" /> method.
NoEffect
Success. The primary operation was not performed because it was not needed; therefore, no side effect was produced.
SideEffect
Success. The primary operation was not performed because it was not needed, but the method produced a side effect. For example, the <see cref="Overload:System.ComponentModel.MaskedTextProvider.RemoveAt" /> method can delete an unassigned edit position, which causes left-shifting of subsequent characters in the formatted string.
Success
Success. The primary operation succeeded.