1 write to _textPeer
PresentationFramework (1)
System\Windows\Controls\TextAdaptor.cs (1)
45_textPeer = textPeer;
13 references to _textPeer
PresentationFramework (13)
System\Windows\Controls\TextAdaptor.cs (13)
299ITextRangeProvider textRange = new TextRangeAdaptor(this, rangeStart, rangeEnd, _textPeer); 300return TextRangeProviderWrapper.WrapArgument(textRange, _textPeer); 318_textPeer.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextChanged); 326_textPeer.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextSelectionChanged); 489return new ITextRangeProvider[] { new TextRangeAdaptor(this, selection.Start, selection.End, _textPeer) }; 541ranges[i] = new TextRangeAdaptor(this, visibleTextSegments[i].Start, visibleTextSegments[i].End, _textPeer); 549ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this, _textContainer.Start, _textContainer.Start, _textPeer) }; 567if (_textPeer is TextAutomationPeer) 569childElement = ((TextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider); 573childElement = ((ContentTextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider); 633range = new TextRangeAdaptor(this, rangeStart, rangeEnd, _textPeer); 662range = new TextRangeAdaptor(this, position, position, _textPeer); 680return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.End, _textPeer);