2 types derived from SpellerInteropBase
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
25
internal class NLGSpellerInterop :
SpellerInteropBase
System\Windows\Documents\WinRTSpellerInterop.cs (1)
36
internal partial class WinRTSpellerInterop:
SpellerInteropBase
39 references to SpellerInteropBase
PresentationFramework (39)
System\Windows\Documents\NLGSpellerInterop.cs (1)
505
private struct STextRange :
SpellerInteropBase
.ITextRange
System\Windows\Documents\Speller.cs (28)
201
_spellerInterop.Mode =
SpellerInteropBase
.SpellerMode.SpellingErrorsWithSuggestions;
204
new
SpellerInteropBase
.EnumTextSegmentsCallback(ScanErrorTextSegment), new TextMapCallbackData(textMap, suggestions));
455
_spellerInterop =
SpellerInteropBase
.CreateInstance();
708
_spellerInterop.Mode =
SpellerInteropBase
.SpellerMode.WordBreaking;
717
new
SpellerInteropBase
.EnumTextSegmentsCallback(ExpandToWordBreakCallback), segments);
818
_spellerInterop.Mode =
SpellerInteropBase
.SpellerMode.SpellingErrors;
826
_spellerInterop.EnumTextSegments(textMap.Text, textMap.TextLength, new
SpellerInteropBase
.EnumSentencesCallback(ScanRangeCheckTimeLimitCallback),
827
new
SpellerInteropBase
.EnumTextSegmentsCallback(ScanTextSegment), new TextMapCallbackData(textMap, status));
882
private bool ScanErrorTextSegment(
SpellerInteropBase
.ISpellerSegment textSegment, object o)
885
SpellerInteropBase
.ITextRange sTextRange = textSegment.TextRange;
917
textSegment.EnumSubSegments(new
SpellerInteropBase
.EnumTextSegmentsCallback(ScanErrorTextSegment), data);
930
private bool ScanTextSegment(
SpellerInteropBase
.ISpellerSegment textSegment, object o)
933
SpellerInteropBase
.ITextRange sTextRange = textSegment.TextRange;
966
textSegment.EnumSubSegments(new
SpellerInteropBase
.EnumTextSegmentsCallback(ScanTextSegment), data);
984
private bool ScanRangeCheckTimeLimitCallback(
SpellerInteropBase
.ISpellerSentence sentence, object o)
1043
private void MarkErrorRange(TextMap textMap,
SpellerInteropBase
.ITextRange sTextRange)
1098
SpellerInteropBase
.ITextRange sTextRange;
1114
_spellerInterop.Mode =
SpellerInteropBase
.SpellerMode.WordBreaking;
1144
new
SpellerInteropBase
.EnumTextSegmentsCallback(ExpandToWordBreakCallback), segments);
1186
sTextRange = (
SpellerInteropBase
.ITextRange)segments[Math.Max(i, 0)];
1194
sTextRange = (
SpellerInteropBase
.ITextRange)segments[Math.Min(i, segments.Count-1)];
1242
SpellerInteropBase
.ITextRange sTextRange;
1251
sTextRange = (
SpellerInteropBase
.ITextRange)segments[0];
1261
sTextRange = (
SpellerInteropBase
.ITextRange)segments[segments.Count - 1];
1273
sTextRange = (
SpellerInteropBase
.ITextRange)segments[index];
1289
sTextRange = (
SpellerInteropBase
.ITextRange)segments[index + 1];
1416
private bool ExpandToWordBreakCallback(
SpellerInteropBase
.ISpellerSegment textSegment, object o)
2018
private
SpellerInteropBase
_spellerInterop;
System\Windows\Documents\SpellerInteropBase.cs (2)
112
public static
SpellerInteropBase
CreateInstance()
114
SpellerInteropBase
spellerInterop = null;
System\Windows\Documents\TextMapOffsetErrorLogger.cs (7)
84
var textSegment = segments[i] as
SpellerInteropBase
.ITextRange;
152
/// Number of segments (i.e., words) returned by the call to <see cref="
SpellerInteropBase
.EnumTextSegments"/>
157
/// Each segment returned by <see cref="
SpellerInteropBase
.EnumTextSegments"/> is an <see cref="
SpellerInteropBase
.ITextRange"/>
158
/// instance containing <see cref="
SpellerInteropBase
.ITextRange.Start"/> and <see cref="
SpellerInteropBase
.ITextRange.Length"/> values.
224
/// Represents the Start and Length fields of a <see cref="
SpellerInteropBase
.ITextRange"/>
System\Windows\Documents\WinRTSpellerInterop.cs (1)
857
internal readonly struct TextRange:
SpellerInteropBase
.ITextRange