1 write to _textPeer
PresentationFramework (1)
System\Windows\Controls\TextAdaptor.cs (1)
49_textPeer = textPeer;
13 references to _textPeer
PresentationFramework (13)
System\Windows\Controls\TextAdaptor.cs (13)
312ITextRangeProvider textRange = new TextRangeAdaptor(this, rangeStart, rangeEnd, _textPeer); 313return TextRangeProviderWrapper.WrapArgument(textRange, _textPeer); 331_textPeer.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextChanged); 339_textPeer.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextSelectionChanged); 502return new ITextRangeProvider[] { new TextRangeAdaptor(this, selection.Start, selection.End, _textPeer) }; 554ranges[i] = new TextRangeAdaptor(this, visibleTextSegments[i].Start, visibleTextSegments[i].End, _textPeer); 562ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this, _textContainer.Start, _textContainer.Start, _textPeer) }; 580if (_textPeer is TextAutomationPeer) 582childElement = ((TextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider); 586childElement = ((ContentTextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider); 646range = new TextRangeAdaptor(this, rangeStart, rangeEnd, _textPeer); 675range = new TextRangeAdaptor(this, position, position, _textPeer); 693return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.End, _textPeer);