1 instantiation of SpellingError
PresentationFramework (1)
System\Windows\Documents\MsSpellCheckLib\Utils\Extensions.cs (1)
93var error = new SpellingError(iSpellingError, spellChecker, text, shouldSuppressCOMExceptions, true);
16 references to SpellingError
PresentationFramework (16)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (8)
325private List<SpellingError> CheckImpl(string text) 331private List<SpellingError> CheckImplWithRetries(string text, bool suppressCOMExceptions) 333List<SpellingError> errors = null; 344public List<SpellingError> Check(string text, bool suppressCOMExceptions = true) 353public List<SpellingError> ComprehensiveCheckImpl(string text) 359public List<SpellingError> ComprehensiveCheckImplWithRetries(string text, bool shouldSuppressCOMExceptions = true) 361List<SpellingError> errors = null; 372public List<SpellingError> ComprehensiveCheck(string text, bool shouldSuppressCOMExceptions = true)
System\Windows\Documents\MsSpellCheckLib\Utils\Extensions.cs (6)
13using SpellingError = System.Windows.Documents.MsSpellCheckLib.SpellChecker.SpellingError; 70internal static List<SpellingError> ToList( 79var result = new List<SpellingError>(); 93var error = new SpellingError(iSpellingError, spellChecker, text, shouldSuppressCOMExceptions, true); 118internal static bool IsClean(this List<SpellingError> errors) 123foreach (var error in errors)
System\Windows\Documents\WinRTSpellerInterop.cs (2)
922List<SpellChecker.SpellingError> spellingErrors = null; 935foreach (var spellingError in spellingErrors)