13 references to GetTextView
PresentationFramework (13)
System\Windows\Controls\PasswordBox.cs (1)
1024ITextView textview = TextEditor.GetTextView(_renderScope);
System\Windows\Controls\Primitives\TextBoxBase.cs (4)
1539if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1541position = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, snapToText); 1579if (TextEditor.GetTextView(this.RenderScope).Validate(position)) 1582rect = TextEditor.GetTextView(this.RenderScope).GetRectangleFromTextPosition(position);
System\Windows\Controls\TextBox.cs (6)
1441if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1443textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, /* snap to text */ true); 1444textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).Start.CreatePointer(textPointer.LogicalDirection); 1470if (TextEditor.GetTextView(this.RenderScope).Validate(point)) 1472textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetTextPositionFromPoint(point, /* snap to text */ true); 1473textPointer = (TextPointer)TextEditor.GetTextView(this.RenderScope).GetLineRange(textPointer).End.CreatePointer(textPointer.LogicalDirection);
System\Windows\Documents\ImmComposition.cs (2)
644view = TextEditor.GetTextView(RenderScope); 1628view = TextEditor.GetTextView(RenderScope);