5 implementations of TextView
PresentationFramework (5)
System\Windows\Controls\PasswordTextContainer.cs (1)
457ITextView ITextContainer.TextView
System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
277ITextView ITextContainer.TextView
System\Windows\Documents\FixedTextContainer.cs (1)
246ITextView ITextContainer.TextView
System\Windows\Documents\NullTextContainer.cs (1)
242ITextView ITextContainer.TextView
System\Windows\Documents\TextContainer.cs (1)
1764ITextView ITextContainer.TextView
4 writes to TextView
PresentationFramework (4)
System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
966_textEditor.TextContainer.TextView = null;
System\Windows\Controls\Primitives\DocumentViewerBase.cs (2)
1000_textView.TextContainer.TextView = null; 1021textContainer.TextView = _textView;
System\Windows\Controls\TextBlock.cs (1)
3919this.TextContainer.TextView = this.TextView;
22 references to TextView
PresentationFramework (22)
MS\Internal\Documents\DocumentViewerHelper.cs (1)
411ITextView textView = textContainer.TextView;
System\Windows\Annotations\AnnotationService.cs (1)
1110textView = textContainer.TextView;
System\Windows\Automation\Peers\DocumentAutomationPeer.cs (2)
127ITextView textView = _textContainer?.TextView; 219ITextView textView = textContainer?.TextView;
System\Windows\Controls\Primitives\DocumentViewerBase.cs (1)
998if (_textView.TextContainer.TextView == _textView)
System\Windows\Controls\TextAdaptor.cs (1)
174ITextView textView = _textContainer.TextView;
System\Windows\Documents\ChangeBlockUndoRecord.cs (1)
36if (textContainer.TextView != null)
System\Windows\Documents\DocumentSequenceTextPointer.cs (6)
294return TextPointerBase.ValidateLayout(this, ((ITextPointer)this).TextContainer.TextView); 343return (((ITextPointer)this).TextContainer.TextView != null && 344((ITextPointer)this).TextContainer.TextView.IsValid && 345((ITextPointer)this).TextContainer.TextView.Contains(this)); 355ITextView textView = ((ITextPointer)this).TextContainer.TextView; 500return TextPointerBase.MoveToLineBoundary(this, ((ITextPointer)this).TextContainer.TextView, count, true);
System\Windows\Documents\FixedTextPointer.cs (6)
456return TextPointerBase.MoveToLineBoundary(this, ((ITextPointer)this).TextContainer.TextView, count, true); 511return TextPointerBase.ValidateLayout(this, ((ITextPointer)this).TextContainer.TextView); 551return (((ITextPointer)this).TextContainer.TextView != null && 552((ITextPointer)this).TextContainer.TextView.IsValid && 553((ITextPointer)this).TextContainer.TextView.Contains(this)); 565ITextView textView = ((ITextPointer)this).TextContainer.TextView;
System\windows\Documents\TextEditorSelection.cs (2)
2355TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position); 2364TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position);
System\Windows\Documents\TextPointerBase.cs (1)
861ITextView textView = thisPointer.TextContainer.TextView;