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