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); 60if (_textContainer.TextSelection != null) 62_textContainer.TextSelection.Changed += new EventHandler(OnTextSelectionChanged); 71if (_textContainer != null && _textContainer.TextSelection != null) 73_textContainer.TextSelection.Changed -= new EventHandler(OnTextSelectionChanged); 183ITextView textView = _textContainer.TextView; 213if (_textContainer.TextSelection != null) 215_textContainer.TextSelection.Select(start, end); 478ITextRange selection = _textContainer.TextSelection; 543ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this, _textContainer.Start, _textContainer.Start, _textPeer) }; 599ITextPointer position = _textContainer.Start.CreatePointer(); 600while (position.CompareTo(_textContainer.End) < 0) 677return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.End, _textPeer); 690return (_textContainer.TextSelection == null) ? SupportedTextSelection.None : SupportedTextSelection.Single;