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); 118_speller.Value.Add(word); 145_speller.Value.Ignore(word); 171_speller.Value.AutoCorrect(from, to); 193return _speller.Value.GetOptionValue(optionId); 220IEnumString optionIds = _speller.Value.OptionIds; 248return _speller.Value.Id; 275return _speller.Value.LocalizedName; 302IOptionDescription iod = _speller.Value.GetOptionDescription(optionId); 330IEnumSpellingError errors = _speller.Value.Check(text); 358IEnumSpellingError errors = _speller.Value.ComprehensiveCheck(text); 391IEnumSpellingError errors = _speller.Value.ComprehensiveCheck(text); 488return (handler != null) ? (uint?)null : _speller.Value.add_SpellCheckerChanged(handler); 511_speller.Value.remove_SpellCheckerChanged(eventCookie); 614if (_speller?.Value != null) 618Marshal.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;