2 writes to _speller
PresentationFramework (2)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (2)
45_speller = new ChangeNotifyWrapper<ISpellChecker>(); 621_speller = null;
21 references to _speller
PresentationFramework (21)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (20)
51_speller.PropertyChanged += SpellerInstanceChanged; 57_speller.Value = SpellCheckerFactory.CreateSpellChecker(_languageTag, shouldSuppressCOMExceptions); 59return (_speller.Value != null); 85IEnumString suggestions = _speller.Value.Suggest(word); 115_speller.Value.Add(word); 142_speller.Value.Ignore(word); 168_speller.Value.AutoCorrect(from, to); 190return _speller.Value.GetOptionValue(optionId); 217IEnumString optionIds = _speller.Value.OptionIds; 245return _speller.Value.Id; 272return _speller.Value.LocalizedName; 299IOptionDescription iod = _speller.Value.GetOptionDescription(optionId); 327IEnumSpellingError errors = _speller.Value.Check(text); 355IEnumSpellingError errors = _speller.Value.ComprehensiveCheck(text); 388IEnumSpellingError errors = _speller.Value.ComprehensiveCheck(text); 485return (handler != null) ? (uint?)null : _speller.Value.add_SpellCheckerChanged(handler); 508_speller.Value.remove_SpellCheckerChanged(eventCookie); 526/// This is called when the ISpellChecker instance stored in <see cref="_speller"/>.Value 611if (_speller?.Value != null) 615Marshal.ReleaseComObject(_speller.Value);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (1)
51if (sender == _spellChecker?._speller?.Value)