9 references to spaceChar
System (9)
compmod\system\componentmodel\MaskedTextProvider.cs (9)
1557return char.IsLetterOrDigit(c) || char.IsPunctuation(c) || char.IsSymbol(c) || (c == spaceChar); 2362if( input == spaceChar && this.ResetOnSpace ) 2383if (!Char.IsDigit(input) && (input != '-') && (input != '+') && input != spaceChar) 2399if (!Char.IsDigit(input) && input != spaceChar) 2420if (!Char.IsLetter(input) && input != spaceChar) 2441if ((!IsAscii(input) && this.AsciiOnly) && input != spaceChar) 2462if (!IsAlphanumeric(input) && input != spaceChar) 2513if ((this.ResetOnPrompt && (input == this.promptChar)) || (this.ResetOnSpace && (input == spaceChar))) 2798st.Append(spaceChar); // replace prompt with space.