1 write to _textContainer
PresentationFramework (1)
System\Windows\Controls\TextAdaptor.cs (1)
46
_textContainer
= textContainer;
20 references to _textContainer
PresentationFramework (20)
System\Windows\Controls\TextAdaptor.cs (20)
47
_textContainer
.Changed += new TextContainerChangedEventHandler(OnTextContainerChanged);
48
if (
_textContainer
.TextSelection != null)
50
_textContainer
.TextSelection.Changed += new EventHandler(OnTextSelectionChanged);
59
if (
_textContainer
!= null &&
_textContainer
.TextSelection != null)
61
_textContainer
.TextSelection.Changed -= new EventHandler(OnTextSelectionChanged);
174
ITextView textView =
_textContainer
.TextView;
204
_textContainer
.TextSelection?.Select(start, end);
286
rangeStart ??=
_textContainer
.Start;
287
rangeEnd ??=
_textContainer
.End;
290
if (rangeStart.TextContainer !=
_textContainer
|| rangeEnd.TextContainer !=
_textContainer
)
487
ITextRange selection =
_textContainer
.TextSelection;
552
ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this,
_textContainer
.Start,
_textContainer
.Start, _textPeer) };
605
ITextPointer position =
_textContainer
.Start.CreatePointer();
606
while (position.CompareTo(
_textContainer
.End) < 0)
683
return new TextRangeAdaptor(this,
_textContainer
.Start,
_textContainer
.End, _textPeer);
696
return (
_textContainer
.TextSelection == null) ? SupportedTextSelection.None : SupportedTextSelection.Single;