5 references to IsPunctuation
PresentationFramework (1)
src\Framework\System\Windows\Documents\TextFindEngine.cs (1)
892Char.IsPunctuation(separatorChar) ||
System (1)
compmod\system\componentmodel\MaskedTextProvider.cs (1)
1557return char.IsLetterOrDigit(c) || char.IsPunctuation(c) || char.IsSymbol(c) || (c == spaceChar);
System.Web.Mobile (1)
UI\MobileControls\TextView.cs (1)
235if (Char.IsWhiteSpace(c) || Char.IsPunctuation(c))
System.Workflow.Activities (1)
Rules\CodeDomDecompiler.cs (1)
116else if ((charValue >= ' ' && charValue < '\u007f') || char.IsLetterOrDigit(charValue) || char.IsPunctuation(charValue))
UIAutomationClientsideProviders (1)
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (1)
610|| (char.IsPunctuation(ch1) && char.IsWhiteSpace(ch2));