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)
58_speller.Value = SpellCheckerFactory.CreateSpellChecker(_languageTag, shouldSuppressCOMExceptions);
System\Windows\Documents\MsSpellCheckLib\Utils\ChangeNotifyWrapper.cs (2)
37Value = value; 76Value = coercedValue;
20 references to Value
PresentationFramework (20)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (17)
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); 612if (_speller?.Value != null) 616Marshal.ReleaseComObject(_speller.Value);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (1)
52if (sender == _spellChecker?._speller?.Value)
System\Windows\Documents\MsSpellCheckLib\Utils\ChangeNotifyWrapper.cs (2)
51PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Value))); 59return Value;