2 implementations of ITextRange
PresentationFramework (2)
System\Windows\Documents\NLGSpellerInterop.cs (1)
500private struct STextRange : SpellerInteropBase.ITextRange
System\Windows\Documents\WinRTSpellerInterop.cs (1)
845internal readonly struct TextRange: SpellerInteropBase.ITextRange
24 references to ITextRange
PresentationFramework (24)
System\Windows\Documents\NLGSpellerInterop.cs (2)
666public ITextRange TextRange 876ITextRange textRange = Segments[Segments.Count - 1].TextRange;
System\Windows\Documents\Speller.cs (11)
874SpellerInteropBase.ITextRange sTextRange = textSegment.TextRange; 922SpellerInteropBase.ITextRange sTextRange = textSegment.TextRange; 1032private void MarkErrorRange(TextMap textMap, SpellerInteropBase.ITextRange sTextRange) 1087SpellerInteropBase.ITextRange sTextRange; 1175sTextRange = (SpellerInteropBase.ITextRange)segments[Math.Max(i, 0)]; 1183sTextRange = (SpellerInteropBase.ITextRange)segments[Math.Min(i, segments.Count-1)]; 1231SpellerInteropBase.ITextRange sTextRange; 1240sTextRange = (SpellerInteropBase.ITextRange)segments[0]; 1250sTextRange = (SpellerInteropBase.ITextRange)segments[segments.Count - 1]; 1262sTextRange = (SpellerInteropBase.ITextRange)segments[index]; 1278sTextRange = (SpellerInteropBase.ITextRange)segments[index + 1];
System\Windows\Documents\SpellerInteropBase.cs (1)
45ITextRange TextRange { get; }
System\Windows\Documents\TextMapOffsetErrorLogger.cs (6)
82var textSegment = segments[i] as SpellerInteropBase.ITextRange; 155/// Each segment returned by <see cref="SpellerInteropBase.EnumTextSegments"/> is an <see cref="SpellerInteropBase.ITextRange"/> 156/// instance containing <see cref="SpellerInteropBase.ITextRange.Start"/> and <see cref="SpellerInteropBase.ITextRange.Length"/> values. 222/// Represents the Start and Length fields of a <see cref="SpellerInteropBase.ITextRange"/>
System\Windows\Documents\WinRTSpellerInterop.cs (4)
859public TextRange(ITextRange textRange) : 892public SpellerSegment(string sourceString, ITextRange textRange, SpellChecker spellChecker, WinRTSpellerInterop owner) 974public ITextRange TextRange { get; } 1072ITextRange textRange = Segments[Segments.Count - 1].TextRange;