2 writes to _speller
PresentationFramework (2)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (2)
45
_speller
= new ChangeNotifyWrapper<ISpellChecker>();
621
_speller
= null;
21 references to _speller
PresentationFramework (21)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (20)
51
_speller
.PropertyChanged += SpellerInstanceChanged;
57
_speller
.Value = SpellCheckerFactory.CreateSpellChecker(_languageTag, shouldSuppressCOMExceptions);
59
return (
_speller
.Value != null);
85
IEnumString suggestions =
_speller
.Value.Suggest(word);
115
_speller
.Value.Add(word);
142
_speller
.Value.Ignore(word);
168
_speller
.Value.AutoCorrect(from, to);
190
return
_speller
.Value.GetOptionValue(optionId);
217
IEnumString optionIds =
_speller
.Value.OptionIds;
245
return
_speller
.Value.Id;
272
return
_speller
.Value.LocalizedName;
299
IOptionDescription iod =
_speller
.Value.GetOptionDescription(optionId);
327
IEnumSpellingError errors =
_speller
.Value.Check(text);
355
IEnumSpellingError errors =
_speller
.Value.ComprehensiveCheck(text);
388
IEnumSpellingError errors =
_speller
.Value.ComprehensiveCheck(text);
485
return (handler != null) ? (uint?)null :
_speller
.Value.add_SpellCheckerChanged(handler);
508
_speller
.Value.remove_SpellCheckerChanged(eventCookie);
526
/// This is called when the ISpellChecker instance stored in <see cref="
_speller
"/>.Value
611
if (
_speller
?.Value != null)
615
Marshal.ReleaseComObject(
_speller
.Value);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (1)
51
if (sender == _spellChecker?.
_speller
?.Value)