2 writes to _speller
PresentationFramework (2)
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (2)
46
_speller
= new ChangeNotifyWrapper<ISpellChecker>();
624
_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);
118
_speller
.Value.Add(word);
145
_speller
.Value.Ignore(word);
171
_speller
.Value.AutoCorrect(from, to);
193
return
_speller
.Value.GetOptionValue(optionId);
220
IEnumString optionIds =
_speller
.Value.OptionIds;
248
return
_speller
.Value.Id;
275
return
_speller
.Value.LocalizedName;
302
IOptionDescription iod =
_speller
.Value.GetOptionDescription(optionId);
330
IEnumSpellingError errors =
_speller
.Value.Check(text);
358
IEnumSpellingError errors =
_speller
.Value.ComprehensiveCheck(text);
391
IEnumSpellingError errors =
_speller
.Value.ComprehensiveCheck(text);
488
return (handler != null) ? (uint?)null :
_speller
.Value.add_SpellCheckerChanged(handler);
511
_speller
.Value.remove_SpellCheckerChanged(eventCookie);
529
/// This is called when the ISpellChecker instance stored in <see cref="
_speller
"/>.Value
614
if (
_speller
?.Value != null)
618
Marshal.ReleaseComObject(
_speller
.Value);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (1)
52
if (sender == _spellChecker?.
_speller
?.Value)