1 write to _textContainer
PresentationFramework (1)
System\Windows\Controls\TextAdaptor.cs (1)
47
_textContainer
= textContainer;
21 references to _textContainer
PresentationFramework (21)
System\Windows\Controls\TextAdaptor.cs (21)
48
_textContainer
.Changed += new TextContainerChangedEventHandler(OnTextContainerChanged);
49
if (
_textContainer
.TextSelection != null)
51
_textContainer
.TextSelection.Changed += new EventHandler(OnTextSelectionChanged);
60
if (
_textContainer
!= null &&
_textContainer
.TextSelection != null)
62
_textContainer
.TextSelection.Changed -= new EventHandler(OnTextSelectionChanged);
172
ITextView textView =
_textContainer
.TextView;
202
if (
_textContainer
.TextSelection != null)
204
_textContainer
.TextSelection.Select(start, end);
293
rangeStart = rangeStart ??
_textContainer
.Start;
294
rangeEnd = rangeEnd ??
_textContainer
.End;
297
if (rangeStart.TextContainer !=
_textContainer
|| rangeEnd.TextContainer !=
_textContainer
)
494
ITextRange selection =
_textContainer
.TextSelection;
559
ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this,
_textContainer
.Start,
_textContainer
.Start, _textPeer) };
612
ITextPointer position =
_textContainer
.Start.CreatePointer();
613
while (position.CompareTo(
_textContainer
.End) < 0)
690
return new TextRangeAdaptor(this,
_textContainer
.Start,
_textContainer
.End, _textPeer);
703
return (
_textContainer
.TextSelection == null) ? SupportedTextSelection.None : SupportedTextSelection.Single;