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); 49if (_textContainer.TextSelection != null) 51_textContainer.TextSelection.Changed += new EventHandler(OnTextSelectionChanged); 60if (_textContainer != null && _textContainer.TextSelection != null) 62_textContainer.TextSelection.Changed -= new EventHandler(OnTextSelectionChanged); 172ITextView textView = _textContainer.TextView; 202if (_textContainer.TextSelection != null) 204_textContainer.TextSelection.Select(start, end); 293rangeStart = rangeStart ?? _textContainer.Start; 294rangeEnd = rangeEnd ?? _textContainer.End; 297if (rangeStart.TextContainer != _textContainer || rangeEnd.TextContainer != _textContainer) 494ITextRange selection = _textContainer.TextSelection; 559ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this, _textContainer.Start, _textContainer.Start, _textPeer) }; 612ITextPointer position = _textContainer.Start.CreatePointer(); 613while (position.CompareTo(_textContainer.End) < 0) 690return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.End, _textPeer); 703return (_textContainer.TextSelection == null) ? SupportedTextSelection.None : SupportedTextSelection.Single;