2 writes to _speller
PresentationFramework (2)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (2)
49_speller = new ChangeNotifyWrapper<ISpellChecker>(); 627_speller = null;
21 references to _speller
PresentationFramework (21)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (20)
55_speller.PropertyChanged += SpellerInstanceChanged; 61_speller.Value = SpellCheckerFactory.CreateSpellChecker(_languageTag, shouldSuppressCOMExceptions); 63return (_speller.Value != null); 89IEnumString suggestions = _speller.Value.Suggest(word); 121_speller.Value.Add(word); 148_speller.Value.Ignore(word); 174_speller.Value.AutoCorrect(from, to); 196return _speller.Value.GetOptionValue(optionId); 223IEnumString optionIds = _speller.Value.OptionIds; 251return _speller.Value.Id; 278return _speller.Value.LocalizedName; 305IOptionDescription iod = _speller.Value.GetOptionDescription(optionId); 333IEnumSpellingError errors = _speller.Value.Check(text); 361IEnumSpellingError errors = _speller.Value.ComprehensiveCheck(text); 394IEnumSpellingError errors = _speller.Value.ComprehensiveCheck(text); 491return (handler != null) ? (uint?)null : _speller.Value.add_SpellCheckerChanged(handler); 514_speller.Value.remove_SpellCheckerChanged(eventCookie); 532/// This is called when the ISpellChecker instance stored in <see cref="_speller"/>.Value 617if (_speller?.Value != null) 621Marshal.ReleaseComObject(_speller.Value);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (1)
52if (sender == _spellChecker?._speller?.Value)