13 references to GetTextView
PresentationFramework (13)
System\Windows\Controls\PasswordBox.cs (1)
1041ITextView textview = TextEditor.GetTextView(_renderScope);
System\Windows\Controls\Primitives\TextBoxBase.cs (4)
1546if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1548position = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, snapToText); 1586if (TextEditor.GetTextView(this.RenderScope).Validate(position)) 1589rect = TextEditor.GetTextView(this.RenderScope).GetRectangleFromTextPosition(position);
System\Windows\Controls\TextBox.cs (6)
1446if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1448textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, /* snap to text */ true); 1449textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).Start.CreatePointer(textPointer.LogicalDirection); 1475if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1477textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, /* snap to text */ true); 1478textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).End.CreatePointer(textPointer.LogicalDirection);
System\Windows\Documents\ImmComposition.cs (2)
667view = TextEditor.GetTextView(RenderScope); 1649view = TextEditor.GetTextView(RenderScope);