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); 48if (_textContainer.TextSelection != null) 50_textContainer.TextSelection.Changed += new EventHandler(OnTextSelectionChanged); 59if (_textContainer != null && _textContainer.TextSelection != null) 61_textContainer.TextSelection.Changed -= new EventHandler(OnTextSelectionChanged); 174ITextView textView = _textContainer.TextView; 204_textContainer.TextSelection?.Select(start, end); 286rangeStart ??= _textContainer.Start; 287rangeEnd ??= _textContainer.End; 290if (rangeStart.TextContainer != _textContainer || rangeEnd.TextContainer != _textContainer) 487ITextRange selection = _textContainer.TextSelection; 552ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this, _textContainer.Start, _textContainer.Start, _textPeer) }; 605ITextPointer position = _textContainer.Start.CreatePointer(); 606while (position.CompareTo(_textContainer.End) < 0) 683return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.End, _textPeer); 696return (_textContainer.TextSelection == null) ? SupportedTextSelection.None : SupportedTextSelection.Single;