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