3 writes to TextView
PresentationFramework (3)
System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
982Document.StructuralCache.TextContainer.TextView = textView;
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1886this.TextContainer.TextView = textView;
System\Windows\Documents\TextContainer.cs (1)
1780this.TextView = value;
19 references to TextView
PresentationFramework (19)
MS\Internal\Documents\ContentHostHelper.cs (4)
58else if (textContainer.TextView != null && textContainer.TextView.RenderScope is IContentHost) 61ich = (IContentHost)textContainer.TextView.RenderScope; 89ITextView textView = flowDocument.StructuralCache.TextContainer.TextView;
System\Windows\Automation\Peers\TextElementAutomationPeer.cs (4)
49ITextView textView = textElement.TextContainer.TextView; 96ITextView textView = textElement.TextContainer.TextView; 150ITextView textView = textElement.TextContainer.TextView; 222ITextView textView = textElement?.TextContainer?.TextView;
System\Windows\Documents\TextContainer.cs (1)
1775return this.TextView;
System\Windows\Documents\TextPointer.cs (10)
1517return _tree.TextView == null ? false : _tree.TextView.IsValid && _tree.TextView.Contains(this); 1604TextSegment lineRange = _tree.TextView.GetLineRange(this); 2120return TextPointerBase.MoveToLineBoundary(this, _tree.TextView, count); 2696if (!_tree.TextView.IsAtCaretUnitBoundary(this)) 2699position = (TextPointer)_tree.TextView.GetNextCaretUnitPosition(this, oppositeDirection); 2728position = (TextPointer)_tree.TextView.GetNextCaretUnitPosition(this, direction); 2759position = (TextPointer)_tree.TextView.GetBackspaceCaretUnitPosition(this); 2805return TextPointerBase.ValidateLayout(this, _tree.TextView);