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