2 implementations of GetLineRange
PresentationFramework (2)
MS\Internal\Documents\TextBoxView.cs (1)
979TextSegment ITextView.GetLineRange(ITextPointer position)
MS\Internal\Documents\TextViewBase.cs (1)
539TextSegment ITextView.GetLineRange(ITextPointer position)
24 references to GetLineRange
PresentationFramework (24)
MS\Internal\Documents\DocumentPageTextView.cs (2)
290/// <see cref="ITextView.GetLineRange"/> 303return _pageTextView.GetLineRange(position);
MS\Internal\Documents\TextBoxView.cs (1)
977/// <see cref="ITextView.GetLineRange"/>
MS\Internal\Documents\TextDocumentView.cs (1)
336/// <see cref="ITextView.GetLineRange"/>
MS\Internal\Documents\TextParagraphView.cs (1)
257/// <see cref="ITextView.GetLineRange"/>
MS\Internal\Documents\TextViewBase.cs (2)
100/// <see cref="ITextView.GetLineRange"/> 537/// <see cref="ITextView.GetLineRange"/>
System\Windows\Controls\TextAdaptor.cs (1)
136TextSegment lineRange = textView.GetLineRange(position);
System\Windows\Controls\TextBox.cs (2)
1449textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).Start.CreatePointer(textPointer.LogicalDirection); 1478textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).End.CreatePointer(textPointer.LogicalDirection);
System\Windows\Controls\TextRangeAdaptor.cs (5)
604TextSegment lineRange = textView.GetLineRange(_start); 626TextSegment lineRange = textView.GetLineRange(_end); 787TextSegment lineRange = textView.GetLineRange(position); 804lineRange = textView.GetLineRange(nextLineStart); 831lineRange = textView.GetLineRange(previousLineEnd);
System\Windows\Documents\CompositionAdorner.cs (1)
579TextSegment textSegment = _textView.GetLineRange(endLinePointer);
System\Windows\Documents\DocumentSequenceTextView.cs (1)
373TextSegment childTR = ChildTextView.GetLineRange(tpLine.ChildPointer.CreatePointer(position.LogicalDirection));
System\windows\Documents\TextEditorSelection.cs (3)
120TextSegment lineRange = textView.GetLineRange(position); 2371TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position); 2380TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position);
System\Windows\Documents\TextPointer.cs (1)
1609TextSegment lineRange = _tree.TextView.GetLineRange(this);
System\Windows\Documents\TextPointerBase.cs (2)
695TextSegment lineSegment = textView.GetLineRange(position); 839TextSegment lineRange = textView.GetLineRange(position);
System\Windows\Documents\TextStore.cs (1)
1087TextSegment lineRange = this.TextView.GetLineRange(navigator);