2 implementations of ITextRange
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
501
private struct STextRange : SpellerInteropBase.
ITextRange
System\Windows\Documents\WinRTSpellerInterop.cs (1)
846
internal readonly struct TextRange: SpellerInteropBase.
ITextRange
24 references to ITextRange
PresentationFramework (24)
System\Windows\Documents\NLGSpellerInterop.cs (2)
667
public
ITextRange
TextRange
877
ITextRange
textRange = Segments[Segments.Count - 1].TextRange;
System\Windows\Documents\Speller.cs (11)
878
SpellerInteropBase.
ITextRange
sTextRange = textSegment.TextRange;
926
SpellerInteropBase.
ITextRange
sTextRange = textSegment.TextRange;
1036
private void MarkErrorRange(TextMap textMap, SpellerInteropBase.
ITextRange
sTextRange)
1091
SpellerInteropBase.
ITextRange
sTextRange;
1179
sTextRange = (SpellerInteropBase.
ITextRange
)segments[Math.Max(i, 0)];
1187
sTextRange = (SpellerInteropBase.
ITextRange
)segments[Math.Min(i, segments.Count-1)];
1235
SpellerInteropBase.
ITextRange
sTextRange;
1244
sTextRange = (SpellerInteropBase.
ITextRange
)segments[0];
1254
sTextRange = (SpellerInteropBase.
ITextRange
)segments[segments.Count - 1];
1266
sTextRange = (SpellerInteropBase.
ITextRange
)segments[index];
1282
sTextRange = (SpellerInteropBase.
ITextRange
)segments[index + 1];
System\Windows\Documents\SpellerInteropBase.cs (1)
46
ITextRange
TextRange { get; }
System\Windows\Documents\TextMapOffsetErrorLogger.cs (6)
83
var
textSegment = segments[i] as SpellerInteropBase.
ITextRange
;
156
/// Each segment returned by <see cref="SpellerInteropBase.EnumTextSegments"/> is an <see cref="SpellerInteropBase.
ITextRange
"/>
157
/// instance containing <see cref="SpellerInteropBase.
ITextRange
.Start"/> and <see cref="SpellerInteropBase.
ITextRange
.Length"/> values.
223
/// Represents the Start and Length fields of a <see cref="SpellerInteropBase.
ITextRange
"/>
System\Windows\Documents\WinRTSpellerInterop.cs (4)
860
public TextRange(
ITextRange
textRange) :
893
public SpellerSegment(string sourceString,
ITextRange
textRange, SpellChecker spellChecker, WinRTSpellerInterop owner)
975
public
ITextRange
TextRange { get; }
1073
ITextRange
textRange = Segments[Segments.Count - 1].TextRange;