1 write to _textContainer
PresentationFramework (1)
src\Framework\System\Windows\Controls\TextAdaptor.cs (1)
58
_textContainer
= textContainer;
17 references to _textContainer
PresentationFramework (17)
src\Framework\System\Windows\Controls\TextAdaptor.cs (17)
59
_textContainer
.Changed += new TextContainerChangedEventHandler(OnTextContainerChanged);
60
if (
_textContainer
.TextSelection != null)
62
_textContainer
.TextSelection.Changed += new EventHandler(OnTextSelectionChanged);
71
if (
_textContainer
!= null &&
_textContainer
.TextSelection != null)
73
_textContainer
.TextSelection.Changed -= new EventHandler(OnTextSelectionChanged);
183
ITextView textView =
_textContainer
.TextView;
213
if (
_textContainer
.TextSelection != null)
215
_textContainer
.TextSelection.Select(start, end);
478
ITextRange selection =
_textContainer
.TextSelection;
543
ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this,
_textContainer
.Start,
_textContainer
.Start, _textPeer) };
599
ITextPointer position =
_textContainer
.Start.CreatePointer();
600
while (position.CompareTo(
_textContainer
.End) < 0)
677
return new TextRangeAdaptor(this,
_textContainer
.Start,
_textContainer
.End, _textPeer);
690
return (
_textContainer
.TextSelection == null) ? SupportedTextSelection.None : SupportedTextSelection.Single;