5 implementations of TextView
PresentationFramework (5)
src\Framework\System\Windows\Controls\PasswordTextContainer.cs (1)
467ITextView ITextContainer.TextView
src\Framework\System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
298ITextView ITextContainer.TextView
src\Framework\System\Windows\Documents\FixedTextContainer.cs (1)
267ITextView ITextContainer.TextView
src\Framework\System\Windows\Documents\NullTextContainer.cs (1)
250ITextView ITextContainer.TextView
src\Framework\System\Windows\Documents\TextContainer.cs (1)
1791ITextView ITextContainer.TextView
4 writes to TextView
PresentationFramework (4)
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
982_textEditor.TextContainer.TextView = null;
src\Framework\System\Windows\Controls\Primitives\DocumentViewerBase.cs (2)
1035_textView.TextContainer.TextView = null; 1057textContainer.TextView = _textView;
src\Framework\System\Windows\Controls\TextBlock.cs (1)
3928this.TextContainer.TextView = this.TextView;
22 references to TextView
PresentationFramework (22)
src\Framework\MS\Internal\Documents\DocumentViewerHelper.cs (1)
434ITextView textView = textContainer.TextView;
src\Framework\System\Windows\Annotations\AnnotationService.cs (1)
1166textView = textContainer.TextView;
src\Framework\System\Windows\Automation\Peers\DocumentAutomationPeer.cs (2)
132ITextView textView = _textContainer?.TextView; 236ITextView textView = (textContainer != null) ? textContainer.TextView : null;
src\Framework\System\Windows\Controls\Primitives\DocumentViewerBase.cs (1)
1033if (_textView.TextContainer.TextView == _textView)
src\Framework\System\Windows\Controls\TextAdaptor.cs (1)
183ITextView textView = _textContainer.TextView;
src\Framework\System\Windows\Documents\ChangeBlockUndoRecord.cs (1)
39if (textContainer.TextView != null)
src\Framework\System\Windows\Documents\DocumentSequenceTextPointer.cs (6)
307return TextPointerBase.ValidateLayout(this, ((ITextPointer)this).TextContainer.TextView); 356return (((ITextPointer)this).TextContainer.TextView != null && 357((ITextPointer)this).TextContainer.TextView.IsValid && 358((ITextPointer)this).TextContainer.TextView.Contains(this)); 368ITextView textView = ((ITextPointer)this).TextContainer.TextView; 514return TextPointerBase.MoveToLineBoundary(this, ((ITextPointer)this).TextContainer.TextView, count, true);
src\Framework\System\Windows\Documents\FixedTextPointer.cs (6)
479return TextPointerBase.MoveToLineBoundary(this, ((ITextPointer)this).TextContainer.TextView, count, true); 537return TextPointerBase.ValidateLayout(this, ((ITextPointer)this).TextContainer.TextView); 577return (((ITextPointer)this).TextContainer.TextView != null && 578((ITextPointer)this).TextContainer.TextView.IsValid && 579((ITextPointer)this).TextContainer.TextView.Contains(this)); 591ITextView textView = ((ITextPointer)this).TextContainer.TextView;
src\Framework\System\windows\Documents\TextEditorSelection.cs (2)
2380TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position); 2389TextSegment lineRange = position.TextContainer.TextView.GetLineRange(position);
src\Framework\System\Windows\Documents\TextPointerBase.cs (1)
869ITextView textView = thisPointer.TextContainer.TextView;