1 instantiation of SpellingError
PresentationFramework (1)
System\Windows\Documents\MsSpellCheckLib\Utils\Extensions.cs (1)
99var error = new SpellingError(iSpellingError, spellChecker, text, shouldSuppressCOMExceptions, true);
16 references to SpellingError
PresentationFramework (16)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (8)
331private List<SpellingError> CheckImpl(string text) 337private List<SpellingError> CheckImplWithRetries(string text, bool suppressCOMExceptions) 339List<SpellingError> errors = null; 350public List<SpellingError> Check(string text, bool suppressCOMExceptions = true) 359public List<SpellingError> ComprehensiveCheckImpl(string text) 365public List<SpellingError> ComprehensiveCheckImplWithRetries(string text, bool shouldSuppressCOMExceptions = true) 367List<SpellingError> errors = null; 378public List<SpellingError> ComprehensiveCheck(string text, bool shouldSuppressCOMExceptions = true)
System\Windows\Documents\MsSpellCheckLib\Utils\Extensions.cs (6)
21using SpellingError = SpellChecker.SpellingError; 76internal static List<SpellingError> ToList( 85var result = new List<SpellingError>(); 99var error = new SpellingError(iSpellingError, spellChecker, text, shouldSuppressCOMExceptions, true); 124internal static bool IsClean(this List<SpellingError> errors) 129foreach (var error in errors)
System\Windows\Documents\WinRTSpellerInterop.cs (2)
934List<SpellChecker.SpellingError> spellingErrors = null; 947foreach (var spellingError in spellingErrors)