1 write to _textContainer
PresentationFramework (1)
System\Windows\Controls\TextAdaptor.cs (1)
50
_textContainer
= textContainer;
21 references to _textContainer
PresentationFramework (21)
System\Windows\Controls\TextAdaptor.cs (21)
51
_textContainer
.Changed += new TextContainerChangedEventHandler(OnTextContainerChanged);
52
if (
_textContainer
.TextSelection != null)
54
_textContainer
.TextSelection.Changed += new EventHandler(OnTextSelectionChanged);
63
if (
_textContainer
!= null &&
_textContainer
.TextSelection != null)
65
_textContainer
.TextSelection.Changed -= new EventHandler(OnTextSelectionChanged);
175
ITextView textView =
_textContainer
.TextView;
205
if (
_textContainer
.TextSelection != null)
207
_textContainer
.TextSelection.Select(start, end);
296
rangeStart = rangeStart ??
_textContainer
.Start;
297
rangeEnd = rangeEnd ??
_textContainer
.End;
300
if (rangeStart.TextContainer !=
_textContainer
|| rangeEnd.TextContainer !=
_textContainer
)
497
ITextRange selection =
_textContainer
.TextSelection;
562
ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this,
_textContainer
.Start,
_textContainer
.Start, _textPeer) };
615
ITextPointer position =
_textContainer
.Start.CreatePointer();
616
while (position.CompareTo(
_textContainer
.End) < 0)
693
return new TextRangeAdaptor(this,
_textContainer
.Start,
_textContainer
.End, _textPeer);
706
return (
_textContainer
.TextSelection == null) ? SupportedTextSelection.None : SupportedTextSelection.Single;