2 writes to _speller
PresentationFramework (2)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (2)
46_speller = new ChangeNotifyWrapper<ISpellChecker>(); 622_speller = null;
21 references to _speller
PresentationFramework (21)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (20)
52_speller.PropertyChanged += SpellerInstanceChanged; 58_speller.Value = SpellCheckerFactory.CreateSpellChecker(_languageTag, shouldSuppressCOMExceptions); 60return (_speller.Value != null); 86IEnumString suggestions = _speller.Value.Suggest(word); 116_speller.Value.Add(word); 143_speller.Value.Ignore(word); 169_speller.Value.AutoCorrect(from, to); 191return _speller.Value.GetOptionValue(optionId); 218IEnumString optionIds = _speller.Value.OptionIds; 246return _speller.Value.Id; 273return _speller.Value.LocalizedName; 300IOptionDescription iod = _speller.Value.GetOptionDescription(optionId); 328IEnumSpellingError errors = _speller.Value.Check(text); 356IEnumSpellingError errors = _speller.Value.ComprehensiveCheck(text); 389IEnumSpellingError errors = _speller.Value.ComprehensiveCheck(text); 486return (handler != null) ? (uint?)null : _speller.Value.add_SpellCheckerChanged(handler); 509_speller.Value.remove_SpellCheckerChanged(eventCookie); 527/// This is called when the ISpellChecker instance stored in <see cref="_speller"/>.Value 612if (_speller?.Value != null) 616Marshal.ReleaseComObject(_speller.Value);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (1)
52if (sender == _spellChecker?._speller?.Value)