2 writes to _spellerInterop
PresentationFramework (2)
src\Framework\System\Windows\Documents\Speller.cs (2)
102
_spellerInterop
= null;
517
_spellerInterop
= SpellerInteropBase.CreateInstance();
21 references to _spellerInterop
PresentationFramework (21)
src\Framework\System\Windows\Documents\Speller.cs (21)
99
if (
_spellerInterop
!= null)
101
_spellerInterop
.Dispose();
210
if (culture == null || !
_spellerInterop
.CanSpellCheck(culture))
223
_spellerInterop
.Mode = SpellerInteropBase.SpellerMode.SpellingErrorsWithSuggestions;
225
_spellerInterop
.EnumTextSegments(textMap.Text, textMap.TextLength, null,
373
object lexicon =
_spellerInterop
.LoadDictionary(pathUri.LocalPath);
407
_spellerInterop
.UnloadDictionary(info.Lexicon);
437
_spellerInterop
.ReleaseAllLexicons();
508
if (
_spellerInterop
!= null)
519
_failedToInit = (
_spellerInterop
== null);
775
_spellerInterop
.Mode = SpellerInteropBase.SpellerMode.WordBreaking;
783
_spellerInterop
.EnumTextSegments(textMap.Text, textMap.TextLength, null,
887
if (
_spellerInterop
.CanSpellCheck(culture))
890
_spellerInterop
.Mode = SpellerInteropBase.SpellerMode.SpellingErrors;
898
_spellerInterop
.EnumTextSegments(textMap.Text, textMap.TextLength, new SpellerInteropBase.EnumSentencesCallback(ScanRangeCheckTimeLimitCallback),
1189
_spellerInterop
.Mode = SpellerInteropBase.SpellerMode.WordBreaking;
1218
_spellerInterop
.EnumTextSegments(textMap.Text, textMap.TextLength, null,
1460
segmentCount =
_spellerInterop
.EnumTextSegments(textMap.Text, textMap.TextLength, null, null, null);
1553
_spellerInterop
.SetLocale(culture);
1559
_spellerInterop
.SetReformMode(culture, _spellingReform);
1682
object lexicon =
_spellerInterop
.LoadDictionary(tempLocationUri, tempFolder);