1 instantiation of SpellingError
PresentationFramework (1)
System\Windows\Documents\MsSpellCheckLib\Utils\Extensions.cs (1)
94var error = new SpellingError(iSpellingError, spellChecker, text, shouldSuppressCOMExceptions, true);
16 references to SpellingError
PresentationFramework (16)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (8)
328private List<SpellingError> CheckImpl(string text) 334private List<SpellingError> CheckImplWithRetries(string text, bool suppressCOMExceptions) 336List<SpellingError> errors = null; 347public List<SpellingError> Check(string text, bool suppressCOMExceptions = true) 356public List<SpellingError> ComprehensiveCheckImpl(string text) 362public List<SpellingError> ComprehensiveCheckImplWithRetries(string text, bool shouldSuppressCOMExceptions = true) 364List<SpellingError> errors = null; 375public List<SpellingError> ComprehensiveCheck(string text, bool shouldSuppressCOMExceptions = true)
System\Windows\Documents\MsSpellCheckLib\Utils\Extensions.cs (6)
14using SpellingError = System.Windows.Documents.MsSpellCheckLib.SpellChecker.SpellingError; 71internal static List<SpellingError> ToList( 80var result = new List<SpellingError>(); 94var error = new SpellingError(iSpellingError, spellChecker, text, shouldSuppressCOMExceptions, true); 119internal static bool IsClean(this List<SpellingError> errors) 124foreach (var error in errors)
System\Windows\Documents\WinRTSpellerInterop.cs (2)
926List<SpellChecker.SpellingError> spellingErrors = null; 939foreach (var spellingError in spellingErrors)