2 implementations of ITextRange
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
505
private struct STextRange : SpellerInteropBase.
ITextRange
System\Windows\Documents\WinRTSpellerInterop.cs (1)
857
internal readonly struct TextRange: SpellerInteropBase.
ITextRange
24 references to ITextRange
PresentationFramework (24)
System\Windows\Documents\NLGSpellerInterop.cs (2)
671
public
ITextRange
TextRange
881
ITextRange
textRange = Segments[Segments.Count - 1].TextRange;
System\Windows\Documents\Speller.cs (11)
885
SpellerInteropBase.
ITextRange
sTextRange = textSegment.TextRange;
933
SpellerInteropBase.
ITextRange
sTextRange = textSegment.TextRange;
1043
private void MarkErrorRange(TextMap textMap, SpellerInteropBase.
ITextRange
sTextRange)
1098
SpellerInteropBase.
ITextRange
sTextRange;
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];
System\Windows\Documents\SpellerInteropBase.cs (1)
51
ITextRange
TextRange { get; }
System\Windows\Documents\TextMapOffsetErrorLogger.cs (6)
84
var
textSegment = segments[i] as SpellerInteropBase.
ITextRange
;
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 (4)
871
public TextRange(
ITextRange
textRange) :
904
public SpellerSegment(string sourceString,
ITextRange
textRange, SpellChecker spellChecker, WinRTSpellerInterop owner)
986
public
ITextRange
TextRange { get; }
1084
ITextRange
textRange = Segments[Segments.Count - 1].TextRange;