1 write to _textContainer
PresentationFramework (1)
System\Windows\Controls\TextAdaptor.cs (1)
46
_textContainer
= textContainer;
19 references to _textContainer
PresentationFramework (19)
System\Windows\Controls\TextAdaptor.cs (19)
47
_textContainer
.Changed += new TextContainerChangedEventHandler(OnTextContainerChanged);
48
_textContainer
.TextSelection?.Changed += new EventHandler(OnTextSelectionChanged);
56
if (
_textContainer
!= null &&
_textContainer
.TextSelection != null)
58
_textContainer
.TextSelection.Changed -= new EventHandler(OnTextSelectionChanged);
171
ITextView textView =
_textContainer
.TextView;
201
_textContainer
.TextSelection?.Select(start, end);
283
rangeStart ??=
_textContainer
.Start;
284
rangeEnd ??=
_textContainer
.End;
287
if (rangeStart.TextContainer !=
_textContainer
|| rangeEnd.TextContainer !=
_textContainer
)
484
ITextRange selection =
_textContainer
.TextSelection;
549
ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this,
_textContainer
.Start,
_textContainer
.Start, _textPeer) };
602
ITextPointer position =
_textContainer
.Start.CreatePointer();
603
while (position.CompareTo(
_textContainer
.End) < 0)
680
return new TextRangeAdaptor(this,
_textContainer
.Start,
_textContainer
.End, _textPeer);
693
return (
_textContainer
.TextSelection == null) ? SupportedTextSelection.None : SupportedTextSelection.Single;