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); 56if (_textContainer != null && _textContainer.TextSelection != null) 58_textContainer.TextSelection.Changed -= new EventHandler(OnTextSelectionChanged); 171ITextView textView = _textContainer.TextView; 201_textContainer.TextSelection?.Select(start, end); 283rangeStart ??= _textContainer.Start; 284rangeEnd ??= _textContainer.End; 287if (rangeStart.TextContainer != _textContainer || rangeEnd.TextContainer != _textContainer) 484ITextRange selection = _textContainer.TextSelection; 549ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this, _textContainer.Start, _textContainer.Start, _textPeer) }; 602ITextPointer position = _textContainer.Start.CreatePointer(); 603while (position.CompareTo(_textContainer.End) < 0) 680return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.End, _textPeer); 693return (_textContainer.TextSelection == null) ? SupportedTextSelection.None : SupportedTextSelection.Single;