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)
303ITextRangeProvider textRange = new TextRangeAdaptor(this, rangeStart, rangeEnd, _textPeer); 304return TextRangeProviderWrapper.WrapArgument(textRange, _textPeer); 322_textPeer.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextChanged); 330_textPeer.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextSelectionChanged); 493return new ITextRangeProvider[] { new TextRangeAdaptor(this, selection.Start, selection.End, _textPeer) }; 545ranges[i] = new TextRangeAdaptor(this, visibleTextSegments[i].Start, visibleTextSegments[i].End, _textPeer); 553ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this, _textContainer.Start, _textContainer.Start, _textPeer) }; 571if (_textPeer is TextAutomationPeer) 573childElement = ((TextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider); 577childElement = ((ContentTextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider); 637range = new TextRangeAdaptor(this, rangeStart, rangeEnd, _textPeer); 666range = new TextRangeAdaptor(this, position, position, _textPeer); 684return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.End, _textPeer);