Implemented interface member:
property
Value
System.Windows.Documents.MsSpellCheckLib.IChangeNotifyWrapper<T>.Value
3 writes to Value
PresentationFramework (3)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (1)
57_speller.Value = SpellCheckerFactory.CreateSpellChecker(_languageTag, shouldSuppressCOMExceptions);
System\Windows\Documents\MsSpellCheckLib\Utils\ChangeNotifyWrapper.cs (2)
36Value = value; 75Value = coercedValue;
20 references to Value
PresentationFramework (20)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (17)
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); 611if (_speller?.Value != null) 615Marshal.ReleaseComObject(_speller.Value);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (1)
51if (sender == _spellChecker?._speller?.Value)
System\Windows\Documents\MsSpellCheckLib\Utils\ChangeNotifyWrapper.cs (2)
50PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Value))); 58return Value;