1 write to _textContainer
PresentationFramework (1)
System\Windows\Controls\TextAdaptor.cs (1)
50_textContainer = textContainer;
21 references to _textContainer
PresentationFramework (21)
System\Windows\Controls\TextAdaptor.cs (21)
51_textContainer.Changed += new TextContainerChangedEventHandler(OnTextContainerChanged); 52if (_textContainer.TextSelection != null) 54_textContainer.TextSelection.Changed += new EventHandler(OnTextSelectionChanged); 63if (_textContainer != null && _textContainer.TextSelection != null) 65_textContainer.TextSelection.Changed -= new EventHandler(OnTextSelectionChanged); 175ITextView textView = _textContainer.TextView; 205if (_textContainer.TextSelection != null) 207_textContainer.TextSelection.Select(start, end); 296rangeStart = rangeStart ?? _textContainer.Start; 297rangeEnd = rangeEnd ?? _textContainer.End; 300if (rangeStart.TextContainer != _textContainer || rangeEnd.TextContainer != _textContainer) 497ITextRange selection = _textContainer.TextSelection; 562ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this, _textContainer.Start, _textContainer.Start, _textPeer) }; 615ITextPointer position = _textContainer.Start.CreatePointer(); 616while (position.CompareTo(_textContainer.End) < 0) 693return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.End, _textPeer); 706return (_textContainer.TextSelection == null) ? SupportedTextSelection.None : SupportedTextSelection.Single;