3 writes to TextView
PresentationFramework (3)
System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
969Document.StructuralCache.TextContainer.TextView = textView;
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1813this.TextContainer.TextView = textView;
System\Windows\Documents\TextContainer.cs (1)
1773this.TextView = value;
19 references to TextView
PresentationFramework (19)
MS\Internal\Documents\ContentHostHelper.cs (4)
57else if (textContainer.TextView != null && textContainer.TextView.RenderScope is IContentHost) 60ich = (IContentHost)textContainer.TextView.RenderScope; 88ITextView textView = flowDocument.StructuralCache.TextContainer.TextView;
System\Windows\Automation\Peers\TextElementAutomationPeer.cs (4)
48ITextView textView = textElement.TextContainer.TextView; 95ITextView textView = textElement.TextContainer.TextView; 149ITextView textView = textElement.TextContainer.TextView; 221ITextView textView = textElement?.TextContainer?.TextView;
System\Windows\Documents\TextContainer.cs (1)
1768return this.TextView;
System\Windows\Documents\TextPointer.cs (10)
1516return _tree.TextView == null ? false : _tree.TextView.IsValid && _tree.TextView.Contains(this); 1603TextSegment lineRange = _tree.TextView.GetLineRange(this); 2119return TextPointerBase.MoveToLineBoundary(this, _tree.TextView, count); 2695if (!_tree.TextView.IsAtCaretUnitBoundary(this)) 2698position = (TextPointer)_tree.TextView.GetNextCaretUnitPosition(this, oppositeDirection); 2727position = (TextPointer)_tree.TextView.GetNextCaretUnitPosition(this, direction); 2758position = (TextPointer)_tree.TextView.GetBackspaceCaretUnitPosition(this); 2804return TextPointerBase.ValidateLayout(this, _tree.TextView);