2 implementations of GetLineRange
PresentationFramework (2)
MS\Internal\Documents\TextBoxView.cs (1)
934TextSegment ITextView.GetLineRange(ITextPointer position)
MS\Internal\Documents\TextViewBase.cs (1)
536TextSegment ITextView.GetLineRange(ITextPointer position)
24 references to GetLineRange
PresentationFramework (24)
MS\Internal\Documents\DocumentPageTextView.cs (2)
287/// <see cref="ITextView.GetLineRange"/> 300return _pageTextView.GetLineRange(position);
MS\Internal\Documents\TextBoxView.cs (1)
932/// <see cref="ITextView.GetLineRange"/>
MS\Internal\Documents\TextDocumentView.cs (1)
332/// <see cref="ITextView.GetLineRange"/>
MS\Internal\Documents\TextParagraphView.cs (1)
250/// <see cref="ITextView.GetLineRange"/>
MS\Internal\Documents\TextViewBase.cs (2)
97/// <see cref="ITextView.GetLineRange"/> 534/// <see cref="ITextView.GetLineRange"/>
System\Windows\Controls\TextAdaptor.cs (1)
135TextSegment lineRange = textView.GetLineRange(position);
System\Windows\Controls\TextBox.cs (2)
1443textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).Start.CreatePointer(textPointer.LogicalDirection); 1472textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).End.CreatePointer(textPointer.LogicalDirection);
System\Windows\Controls\TextRangeAdaptor.cs (5)
601TextSegment lineRange = textView.GetLineRange(_start); 623TextSegment lineRange = textView.GetLineRange(_end); 784TextSegment lineRange = textView.GetLineRange(position); 801lineRange = textView.GetLineRange(nextLineStart); 828lineRange = textView.GetLineRange(previousLineEnd);
System\Windows\Documents\CompositionAdorner.cs (1)
574TextSegment textSegment = _textView.GetLineRange(endLinePointer);
System\Windows\Documents\DocumentSequenceTextView.cs (1)
364TextSegment childTR = ChildTextView.GetLineRange(tpLine.ChildPointer.CreatePointer(position.LogicalDirection));
System\windows\Documents\TextEditorSelection.cs (3)
104TextSegment lineRange = textView.GetLineRange(position); 2355TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position); 2364TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position);
System\Windows\Documents\TextPointer.cs (1)
1603TextSegment lineRange = _tree.TextView.GetLineRange(this);
System\Windows\Documents\TextPointerBase.cs (2)
689TextSegment lineSegment = textView.GetLineRange(position); 833TextSegment lineRange = textView.GetLineRange(position);
System\Windows\Documents\TextStore.cs (1)
1072TextSegment lineRange = this.TextView.GetLineRange(navigator);