2 implementations of GetLineRange
PresentationFramework (2)
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
983TextSegment ITextView.GetLineRange(ITextPointer position)
src\Framework\MS\Internal\Documents\TextViewBase.cs (1)
541TextSegment ITextView.GetLineRange(ITextPointer position)
24 references to GetLineRange
PresentationFramework (24)
src\Framework\MS\Internal\Documents\DocumentPageTextView.cs (2)
292/// <see cref="ITextView.GetLineRange"/> 305return _pageTextView.GetLineRange(position);
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
981/// <see cref="ITextView.GetLineRange"/>
src\Framework\MS\Internal\Documents\TextDocumentView.cs (1)
343/// <see cref="ITextView.GetLineRange"/>
src\Framework\MS\Internal\Documents\TextParagraphView.cs (1)
276/// <see cref="ITextView.GetLineRange"/>
src\Framework\MS\Internal\Documents\TextViewBase.cs (2)
102/// <see cref="ITextView.GetLineRange"/> 539/// <see cref="ITextView.GetLineRange"/>
src\Framework\System\Windows\Controls\TextAdaptor.cs (1)
144TextSegment lineRange = textView.GetLineRange(position);
src\Framework\System\Windows\Controls\TextBox.cs (2)
1441textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).Start.CreatePointer(textPointer.LogicalDirection); 1470textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).End.CreatePointer(textPointer.LogicalDirection);
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (5)
612TextSegment lineRange = textView.GetLineRange(_start); 634TextSegment lineRange = textView.GetLineRange(_end); 795TextSegment lineRange = textView.GetLineRange(position); 812lineRange = textView.GetLineRange(nextLineStart); 839lineRange = textView.GetLineRange(previousLineEnd);
src\Framework\System\Windows\Documents\CompositionAdorner.cs (1)
581TextSegment textSegment = _textView.GetLineRange(endLinePointer);
src\Framework\System\Windows\Documents\DocumentSequenceTextView.cs (1)
388TextSegment childTR = ChildTextView.GetLineRange(tpLine.ChildPointer.CreatePointer(position.LogicalDirection));
src\Framework\System\windows\Documents\TextEditorSelection.cs (3)
128TextSegment lineRange = textView.GetLineRange(position); 2380TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position); 2389TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position);
src\Framework\System\Windows\Documents\TextPointer.cs (1)
1623TextSegment lineRange = _tree.TextView.GetLineRange(this);
src\Framework\System\Windows\Documents\TextPointerBase.cs (2)
697TextSegment lineSegment = textView.GetLineRange(position); 841TextSegment lineRange = textView.GetLineRange(position);
src\Framework\System\Windows\Documents\TextStore.cs (1)
947TextSegment lineRange = this.TextView.GetLineRange(navigator);