5 implementations of TextView
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (1)
461ITextView ITextContainer.TextView
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
294ITextView ITextContainer.TextView
System\Windows\Documents\FixedTextContainer.cs (1)
263ITextView ITextContainer.TextView
System\Windows\Documents\NullTextContainer.cs (1)
247ITextView ITextContainer.TextView
System\Windows\Documents\TextContainer.cs (1)
1776ITextView ITextContainer.TextView
4 writes to TextView
PresentationFramework (4)
System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
974_textEditor.TextContainer.TextView = null;
System\Windows\Controls\Primitives\DocumentViewerBase.cs (2)
1023_textView.TextContainer.TextView = null; 1045textContainer.TextView = _textView;
System\Windows\Controls\TextBlock.cs (1)
3939this.TextContainer.TextView = this.TextView;
22 references to TextView
PresentationFramework (22)
MS\Internal\Documents\DocumentViewerHelper.cs (1)
414ITextView textView = textContainer.TextView;
System\Windows\Annotations\AnnotationService.cs (1)
1128textView = textContainer.TextView;
System\Windows\Automation\Peers\DocumentAutomationPeer.cs (2)
130ITextView textView = _textContainer?.TextView; 222ITextView textView = (textContainer != null) ? textContainer.TextView : null;
System\Windows\Controls\Primitives\DocumentViewerBase.cs (1)
1021if (_textView.TextContainer.TextView == _textView)
System\Windows\Controls\TextAdaptor.cs (1)
175ITextView textView = _textContainer.TextView;
System\Windows\Documents\ChangeBlockUndoRecord.cs (1)
39if (textContainer.TextView != null)
System\Windows\Documents\DocumentSequenceTextPointer.cs (6)
303return TextPointerBase.ValidateLayout(this, ((ITextPointer)this).TextContainer.TextView); 352return (((ITextPointer)this).TextContainer.TextView != null && 353((ITextPointer)this).TextContainer.TextView.IsValid && 354((ITextPointer)this).TextContainer.TextView.Contains(this)); 364ITextView textView = ((ITextPointer)this).TextContainer.TextView; 510return TextPointerBase.MoveToLineBoundary(this, ((ITextPointer)this).TextContainer.TextView, count, true);
System\Windows\Documents\FixedTextPointer.cs (6)
464return TextPointerBase.MoveToLineBoundary(this, ((ITextPointer)this).TextContainer.TextView, count, true); 519return TextPointerBase.ValidateLayout(this, ((ITextPointer)this).TextContainer.TextView); 559return (((ITextPointer)this).TextContainer.TextView != null && 560((ITextPointer)this).TextContainer.TextView.IsValid && 561((ITextPointer)this).TextContainer.TextView.Contains(this)); 573ITextView textView = ((ITextPointer)this).TextContainer.TextView;
System\windows\Documents\TextEditorSelection.cs (2)
2371TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position); 2380TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position);
System\Windows\Documents\TextPointerBase.cs (1)
867ITextView textView = thisPointer.TextContainer.TextView;