1 write to _textPeer
PresentationFramework (1)
System\Windows\Controls\TextAdaptor.cs (1)
46_textPeer = textPeer;
13 references to _textPeer
PresentationFramework (13)
System\Windows\Controls\TextAdaptor.cs (13)
300ITextRangeProvider textRange = new TextRangeAdaptor(this, rangeStart, rangeEnd, _textPeer); 301return TextRangeProviderWrapper.WrapArgument(textRange, _textPeer); 319_textPeer.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextChanged); 327_textPeer.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextSelectionChanged); 490return new ITextRangeProvider[] { new TextRangeAdaptor(this, selection.Start, selection.End, _textPeer) }; 542ranges[i] = new TextRangeAdaptor(this, visibleTextSegments[i].Start, visibleTextSegments[i].End, _textPeer); 550ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this, _textContainer.Start, _textContainer.Start, _textPeer) }; 568if (_textPeer is TextAutomationPeer) 570childElement = ((TextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider); 574childElement = ((ContentTextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider); 634range = new TextRangeAdaptor(this, rangeStart, rangeEnd, _textPeer); 663range = new TextRangeAdaptor(this, position, position, _textPeer); 681return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.End, _textPeer);