2 implementations of ITextRange
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
501private struct STextRange : SpellerInteropBase.ITextRange
System\Windows\Documents\WinRTSpellerInterop.cs (1)
849internal readonly struct TextRange: SpellerInteropBase.ITextRange
24 references to ITextRange
PresentationFramework (24)
System\Windows\Documents\NLGSpellerInterop.cs (2)
667public ITextRange TextRange 877ITextRange textRange = Segments[Segments.Count - 1].TextRange;
System\Windows\Documents\Speller.cs (11)
881SpellerInteropBase.ITextRange sTextRange = textSegment.TextRange; 929SpellerInteropBase.ITextRange sTextRange = textSegment.TextRange; 1039private void MarkErrorRange(TextMap textMap, SpellerInteropBase.ITextRange sTextRange) 1094SpellerInteropBase.ITextRange sTextRange; 1182sTextRange = (SpellerInteropBase.ITextRange)segments[Math.Max(i, 0)]; 1190sTextRange = (SpellerInteropBase.ITextRange)segments[Math.Min(i, segments.Count-1)]; 1238SpellerInteropBase.ITextRange sTextRange; 1247sTextRange = (SpellerInteropBase.ITextRange)segments[0]; 1257sTextRange = (SpellerInteropBase.ITextRange)segments[segments.Count - 1]; 1269sTextRange = (SpellerInteropBase.ITextRange)segments[index]; 1285sTextRange = (SpellerInteropBase.ITextRange)segments[index + 1];
System\Windows\Documents\SpellerInteropBase.cs (1)
46ITextRange TextRange { get; }
System\Windows\Documents\TextMapOffsetErrorLogger.cs (6)
83var 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)
863public TextRange(ITextRange textRange) : 896public SpellerSegment(string sourceString, ITextRange textRange, SpellChecker spellChecker, WinRTSpellerInterop owner) 978public ITextRange TextRange { get; } 1076ITextRange textRange = Segments[Segments.Count - 1].TextRange;