2 implementations of ITextRange
PresentationFramework (2)
src\Framework\System\Windows\Documents\NLGSpellerInterop.cs (1)
573private struct STextRange : SpellerInteropBase.ITextRange
src\Framework\System\Windows\Documents\WinRTSpellerInterop.cs (1)
951private struct TextRange: SpellerInteropBase.ITextRange
16 references to ITextRange
PresentationFramework (16)
src\Framework\System\Windows\Documents\NLGSpellerInterop.cs (2)
748public ITextRange TextRange 998ITextRange textRange = Segments[Segments.Count - 1].TextRange;
src\Framework\System\Windows\Documents\Speller.cs (11)
953SpellerInteropBase.ITextRange sTextRange = textSegment.TextRange; 1001SpellerInteropBase.ITextRange sTextRange = textSegment.TextRange; 1113private void MarkErrorRange(TextMap textMap, SpellerInteropBase.ITextRange sTextRange) 1173SpellerInteropBase.ITextRange sTextRange; 1261sTextRange = (SpellerInteropBase.ITextRange)segments[Math.Max(i, 0)]; 1269sTextRange = (SpellerInteropBase.ITextRange)segments[Math.Min(i, segments.Count-1)]; 1317SpellerInteropBase.ITextRange sTextRange; 1326sTextRange = (SpellerInteropBase.ITextRange)segments[0]; 1336sTextRange = (SpellerInteropBase.ITextRange)segments[segments.Count - 1]; 1348sTextRange = (SpellerInteropBase.ITextRange)segments[index]; 1364sTextRange = (SpellerInteropBase.ITextRange)segments[index + 1];
src\Framework\System\Windows\Documents\SpellerInteropBase.cs (1)
42ITextRange TextRange { get; }
src\Framework\System\Windows\Documents\WinRTSpellerInterop.cs (2)
1057public ITextRange TextRange 1165ITextRange textRange = Segments[Segments.Count - 1].TextRange;