3 writes to TextView
PresentationFramework (3)
System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
983Document.StructuralCache.TextContainer.TextView = textView;
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1893this.TextContainer.TextView = textView;
System\Windows\Documents\TextContainer.cs (1)
1785this.TextView = value;
19 references to TextView
PresentationFramework (19)
MS\Internal\Documents\ContentHostHelper.cs (4)
61else if (textContainer.TextView != null && textContainer.TextView.RenderScope is IContentHost) 64ich = (IContentHost)textContainer.TextView.RenderScope; 92ITextView textView = flowDocument.StructuralCache.TextContainer.TextView;
System\Windows\Automation\Peers\TextElementAutomationPeer.cs (4)
53ITextView textView = textElement.TextContainer.TextView; 100ITextView textView = textElement.TextContainer.TextView; 154ITextView textView = textElement.TextContainer.TextView; 226ITextView textView = textElement?.TextContainer?.TextView;
System\Windows\Documents\TextContainer.cs (1)
1780return this.TextView;
System\Windows\Documents\TextPointer.cs (10)
1522return _tree.TextView == null ? false : _tree.TextView.IsValid && _tree.TextView.Contains(this); 1609TextSegment lineRange = _tree.TextView.GetLineRange(this); 2125return TextPointerBase.MoveToLineBoundary(this, _tree.TextView, count); 2701if (!_tree.TextView.IsAtCaretUnitBoundary(this)) 2704position = (TextPointer)_tree.TextView.GetNextCaretUnitPosition(this, oppositeDirection); 2733position = (TextPointer)_tree.TextView.GetNextCaretUnitPosition(this, direction); 2764position = (TextPointer)_tree.TextView.GetBackspaceCaretUnitPosition(this); 2810return TextPointerBase.ValidateLayout(this, _tree.TextView);