5 implementations of TextView
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (1)
458ITextView ITextContainer.TextView
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
278ITextView ITextContainer.TextView
System\Windows\Documents\FixedTextContainer.cs (1)
247ITextView ITextContainer.TextView
System\Windows\Documents\NullTextContainer.cs (1)
243ITextView ITextContainer.TextView
System\Windows\Documents\TextContainer.cs (1)
1771ITextView ITextContainer.TextView
4 writes to TextView
PresentationFramework (4)
System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
973_textEditor.TextContainer.TextView = null;
System\Windows\Controls\Primitives\DocumentViewerBase.cs (2)
1007_textView.TextContainer.TextView = null; 1031textContainer.TextView = _textView;
System\Windows\Controls\TextBlock.cs (1)
3929this.TextContainer.TextView = this.TextView;
22 references to TextView
PresentationFramework (22)
MS\Internal\Documents\DocumentViewerHelper.cs (1)
412ITextView textView = textContainer.TextView;
System\Windows\Annotations\AnnotationService.cs (1)
1111textView = textContainer.TextView;
System\Windows\Automation\Peers\DocumentAutomationPeer.cs (2)
128ITextView textView = _textContainer?.TextView; 220ITextView textView = (textContainer != null) ? textContainer.TextView : null;
System\Windows\Controls\Primitives\DocumentViewerBase.cs (1)
1005if (_textView.TextContainer.TextView == _textView)
System\Windows\Controls\TextAdaptor.cs (1)
172ITextView textView = _textContainer.TextView;
System\Windows\Documents\ChangeBlockUndoRecord.cs (1)
37if (textContainer.TextView != null)
System\Windows\Documents\DocumentSequenceTextPointer.cs (6)
295return TextPointerBase.ValidateLayout(this, ((ITextPointer)this).TextContainer.TextView); 344return (((ITextPointer)this).TextContainer.TextView != null && 345((ITextPointer)this).TextContainer.TextView.IsValid && 346((ITextPointer)this).TextContainer.TextView.Contains(this)); 356ITextView textView = ((ITextPointer)this).TextContainer.TextView; 501return TextPointerBase.MoveToLineBoundary(this, ((ITextPointer)this).TextContainer.TextView, count, true);
System\Windows\Documents\FixedTextPointer.cs (6)
457return TextPointerBase.MoveToLineBoundary(this, ((ITextPointer)this).TextContainer.TextView, count, true); 512return TextPointerBase.ValidateLayout(this, ((ITextPointer)this).TextContainer.TextView); 552return (((ITextPointer)this).TextContainer.TextView != null && 553((ITextPointer)this).TextContainer.TextView.IsValid && 554((ITextPointer)this).TextContainer.TextView.Contains(this)); 566ITextView textView = ((ITextPointer)this).TextContainer.TextView;
System\windows\Documents\TextEditorSelection.cs (2)
2356TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position); 2365TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position);
System\Windows\Documents\TextPointerBase.cs (1)
862ITextView textView = thisPointer.TextContainer.TextView;