3 writes to TextView
PresentationFramework (3)
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
991Document.StructuralCache.TextContainer.TextView = textView;
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1924this.TextContainer.TextView = textView;
src\Framework\System\Windows\Documents\TextContainer.cs (1)
1800this.TextView = value;
15 references to TextView
PresentationFramework (15)
src\Framework\MS\Internal\Documents\ContentHostHelper.cs (4)
63else if (textContainer.TextView != null && textContainer.TextView.RenderScope is IContentHost) 66ich = (IContentHost)textContainer.TextView.RenderScope; 94ITextView textView = flowDocument.StructuralCache.TextContainer.TextView;
src\Framework\System\Windows\Automation\Peers\TextElementAutomationPeer.cs (4)
61ITextView textView = textElement.TextContainer.TextView; 114ITextView textView = textElement.TextContainer.TextView; 168ITextView textView = textElement.TextContainer.TextView; 240ITextView textView = textElement?.TextContainer?.TextView;
src\Framework\System\Windows\Documents\TextContainer.cs (1)
1795return this.TextView;
src\Framework\System\Windows\Documents\TextPointer.cs (6)
1536return _tree.TextView == null ? false : _tree.TextView.IsValid && _tree.TextView.Contains(this); 1623TextSegment lineRange = _tree.TextView.GetLineRange(this); 2142return TextPointerBase.MoveToLineBoundary(this, _tree.TextView, count); 2836return TextPointerBase.ValidateLayout(this, _tree.TextView);