2 implementations of GetLineRange
PresentationFramework (2)
MS\Internal\Documents\TextBoxView.cs (1)
977TextSegment ITextView.GetLineRange(ITextPointer position)
MS\Internal\Documents\TextViewBase.cs (1)
537TextSegment ITextView.GetLineRange(ITextPointer position)
24 references to GetLineRange
PresentationFramework (24)
MS\Internal\Documents\DocumentPageTextView.cs (2)
288/// <see cref="ITextView.GetLineRange"/> 301return _pageTextView.GetLineRange(position);
MS\Internal\Documents\TextBoxView.cs (1)
975/// <see cref="ITextView.GetLineRange"/>
MS\Internal\Documents\TextDocumentView.cs (1)
334/// <see cref="ITextView.GetLineRange"/>
MS\Internal\Documents\TextParagraphView.cs (1)
251/// <see cref="ITextView.GetLineRange"/>
MS\Internal\Documents\TextViewBase.cs (2)
98/// <see cref="ITextView.GetLineRange"/> 535/// <see cref="ITextView.GetLineRange"/>
System\Windows\Controls\TextAdaptor.cs (1)
133TextSegment lineRange = textView.GetLineRange(position);
System\Windows\Controls\TextBox.cs (2)
1442textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).Start.CreatePointer(textPointer.LogicalDirection); 1471textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).End.CreatePointer(textPointer.LogicalDirection);
System\Windows\Controls\TextRangeAdaptor.cs (5)
602TextSegment lineRange = textView.GetLineRange(_start); 624TextSegment lineRange = textView.GetLineRange(_end); 785TextSegment lineRange = textView.GetLineRange(position); 802lineRange = textView.GetLineRange(nextLineStart); 829lineRange = textView.GetLineRange(previousLineEnd);
System\Windows\Documents\CompositionAdorner.cs (1)
576TextSegment textSegment = _textView.GetLineRange(endLinePointer);
System\Windows\Documents\DocumentSequenceTextView.cs (1)
365TextSegment childTR = ChildTextView.GetLineRange(tpLine.ChildPointer.CreatePointer(position.LogicalDirection));
System\windows\Documents\TextEditorSelection.cs (3)
105TextSegment lineRange = textView.GetLineRange(position); 2356TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position); 2365TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position);
System\Windows\Documents\TextPointer.cs (1)
1604TextSegment lineRange = _tree.TextView.GetLineRange(this);
System\Windows\Documents\TextPointerBase.cs (2)
690TextSegment lineSegment = textView.GetLineRange(position); 834TextSegment lineRange = textView.GetLineRange(position);
System\Windows\Documents\TextStore.cs (1)
1076TextSegment lineRange = this.TextView.GetLineRange(navigator);