13 references to GetTextView
PresentationFramework (13)
src\Framework\System\Windows\Controls\PasswordBox.cs (1)
1057ITextView textview = TextEditor.GetTextView(_renderScope);
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (4)
1572if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1574position = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, snapToText); 1615if (TextEditor.GetTextView(this.RenderScope).Validate(position)) 1618rect = TextEditor.GetTextView(this.RenderScope).GetRectangleFromTextPosition(position);
src\Framework\System\Windows\Controls\TextBox.cs (6)
1438if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1440textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, /* snap to text */ true); 1441textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).Start.CreatePointer(textPointer.LogicalDirection); 1467if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1469textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, /* snap to text */ true); 1470textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).End.CreatePointer(textPointer.LogicalDirection);
src\Framework\System\Windows\Documents\ImmComposition.cs (2)
763view = TextEditor.GetTextView(RenderScope); 1823view = TextEditor.GetTextView(RenderScope);