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)
309ITextRangeProvider textRange = new TextRangeAdaptor(this, rangeStart, rangeEnd, _textPeer); 310return TextRangeProviderWrapper.WrapArgument(textRange, _textPeer); 328_textPeer.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextChanged); 336_textPeer.RaiseAutomationEvent(AutomationEvents.TextPatternOnTextSelectionChanged); 499return new ITextRangeProvider[] { new TextRangeAdaptor(this, selection.Start, selection.End, _textPeer) }; 551ranges[i] = new TextRangeAdaptor(this, visibleTextSegments[i].Start, visibleTextSegments[i].End, _textPeer); 559ranges = new ITextRangeProvider[] { new TextRangeAdaptor(this, _textContainer.Start, _textContainer.Start, _textPeer) }; 577if (_textPeer is TextAutomationPeer) 579childElement = ((TextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider); 583childElement = ((ContentTextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider); 643range = new TextRangeAdaptor(this, rangeStart, rangeEnd, _textPeer); 672range = new TextRangeAdaptor(this, position, position, _textPeer); 690return new TextRangeAdaptor(this, _textContainer.Start, _textContainer.End, _textPeer);