2 writes to _spellerInterop
PresentationFramework (2)
System\Windows\Documents\Speller.cs (2)
90
_spellerInterop
= null;
447
_spellerInterop
= SpellerInteropBase.CreateInstance();
20 references to _spellerInterop
PresentationFramework (20)
System\Windows\Documents\Speller.cs (20)
89
_spellerInterop
?.Dispose();
184
if (culture is not null &&
_spellerInterop
.CanSpellCheck(culture))
193
_spellerInterop
.Mode = SpellerInteropBase.SpellerMode.SpellingErrorsWithSuggestions;
195
_spellerInterop
.EnumTextSegments(textMap.Text, textMap.TextLength, null,
328
object lexicon =
_spellerInterop
.LoadDictionary(pathUri.LocalPath);
355
_spellerInterop
.UnloadDictionary(info.Lexicon);
376
_spellerInterop
.ReleaseAllLexicons();
438
if (
_spellerInterop
!= null)
449
_failedToInit = (
_spellerInterop
== null);
697
_spellerInterop
.Mode = SpellerInteropBase.SpellerMode.WordBreaking;
705
_spellerInterop
.EnumTextSegments(textMap.Text, textMap.TextLength, null,
804
if (
_spellerInterop
.CanSpellCheck(culture))
807
_spellerInterop
.Mode = SpellerInteropBase.SpellerMode.SpellingErrors;
815
_spellerInterop
.EnumTextSegments(textMap.Text, textMap.TextLength, new SpellerInteropBase.EnumSentencesCallback(ScanRangeCheckTimeLimitCallback),
1103
_spellerInterop
.Mode = SpellerInteropBase.SpellerMode.WordBreaking;
1132
_spellerInterop
.EnumTextSegments(textMap.Text, textMap.TextLength, null,
1369
segmentCount =
_spellerInterop
.EnumTextSegments(textMap.Text, textMap.TextLength, null, null, null);
1447
_spellerInterop
.SetLocale(culture);
1453
_spellerInterop
.SetReformMode(culture, _spellingReform);
1561
object lexicon =
_spellerInterop
.LoadDictionary(tempLocationUri, tempFolder);