2 writes to _speller
PresentationFramework (2)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (2)
46
_speller
= new ChangeNotifyWrapper<ISpellChecker>();
622
_speller
= null;
21 references to _speller
PresentationFramework (21)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (20)
52
_speller
.PropertyChanged += SpellerInstanceChanged;
58
_speller
.Value = SpellCheckerFactory.CreateSpellChecker(_languageTag, shouldSuppressCOMExceptions);
60
return (
_speller
.Value != null);
86
IEnumString suggestions =
_speller
.Value.Suggest(word);
116
_speller
.Value.Add(word);
143
_speller
.Value.Ignore(word);
169
_speller
.Value.AutoCorrect(from, to);
191
return
_speller
.Value.GetOptionValue(optionId);
218
IEnumString optionIds =
_speller
.Value.OptionIds;
246
return
_speller
.Value.Id;
273
return
_speller
.Value.LocalizedName;
300
IOptionDescription iod =
_speller
.Value.GetOptionDescription(optionId);
328
IEnumSpellingError errors =
_speller
.Value.Check(text);
356
IEnumSpellingError errors =
_speller
.Value.ComprehensiveCheck(text);
389
IEnumSpellingError errors =
_speller
.Value.ComprehensiveCheck(text);
486
return (handler != null) ? (uint?)null :
_speller
.Value.add_SpellCheckerChanged(handler);
509
_speller
.Value.remove_SpellCheckerChanged(eventCookie);
527
/// This is called when the ISpellChecker instance stored in <see cref="
_speller
"/>.Value
612
if (
_speller
?.Value != null)
616
Marshal.ReleaseComObject(
_speller
.Value);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (1)
52
if (sender == _spellChecker?.
_speller
?.Value)