1 instantiation of SpellChecker
PresentationFramework (1)
System\Windows\Documents\WinRTSpellerInterop.cs (1)
317spellChecker = new SpellChecker(culture.Name);
26 references to SpellChecker
PresentationFramework (26)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventArgs.cs (2)
22internal SpellCheckerChangedEventArgs(SpellChecker spellChecker) 27internal SpellChecker SpellChecker { get; private set; }
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (2)
31private SpellChecker _spellChecker; 35internal SpellCheckerChangedEventHandler(SpellChecker spellChecker)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellingError.cs (2)
75internal SpellingError(ISpellingError error, SpellChecker spellChecker, string text, bool shouldSuppressCOMExceptions = true, bool shouldReleaseCOMObject = true) 90private void PopulateSuggestions(ISpellingError error, SpellChecker spellChecker, string text, bool shouldSuppressCOMExceptions, bool shouldReleaseCOMObject)
System\Windows\Documents\MsSpellCheckLib\Utils\Extensions.cs (3)
21using SpellingError = SpellChecker.SpellingError; 22using CorrectiveAction = SpellChecker.CorrectiveAction; 78SpellChecker spellChecker,
System\Windows\Documents\WinRTSpellerInterop.cs (14)
60_spellCheckers = new Dictionary<CultureInfo, Tuple<WordsSegmenter, SpellChecker>>(); 311SpellChecker spellChecker = null; 341_spellCheckers[culture] = new Tuple<WordsSegmenter, SpellChecker>(wordBreaker, spellChecker); 378var spellChecker = CurrentSpellChecker; 689foreach (Tuple<WordsSegmenter, SpellChecker> item in _spellCheckers.Values) 691SpellChecker spellChecker = item?.Item2; 809private SpellChecker CurrentSpellChecker 833private Dictionary<CultureInfo, Tuple<WordsSegmenter, SpellChecker>> _spellCheckers; 904public SpellerSegment(string sourceString, ITextRange textRange, SpellChecker spellChecker, WinRTSpellerInterop owner) 934List<SpellChecker.SpellingError> spellingErrors = null; 950if (spellingError.CorrectiveAction != SpellChecker.CorrectiveAction.None) 1036SpellChecker _spellChecker; 1052public SpellerSentence(string sentence, WordsSegmenter wordBreaker, SpellChecker spellChecker, WinRTSpellerInterop owner) 1096private SpellChecker _spellChecker;
System\Windows\Documents\WinRTSpellerInteropExtensions.cs (3)
59SpellChecker spellChecker, 151/// See note about MAXLEN in <see cref="ComprehensiveGetTokens(WordsSegmenter, string, SpellChecker, WinRTSpellerInterop)"/> 155SpellChecker spellChecker,