6 references to GetAutomationPeersFromRange
PresentationFramework (6)
src\Framework\System\Windows\Automation\Peers\DocumentAutomationPeer.cs (1)
68return TextContainerHelper.GetAutomationPeersFromRange(_childrenStart, _childrenEnd, textContainer.Start);
src\Framework\System\Windows\Automation\Peers\RichTextBoxAutomationPeer.cs (2)
81return TextContainerHelper.GetAutomationPeersFromRange(owner.TextContainer.Start, owner.TextContainer.End, null); 93return TextContainerHelper.GetAutomationPeersFromRange(start, end, owner.TextContainer.Start);
src\Framework\System\Windows\Automation\Peers\TextBlockAutomationPeer.cs (1)
41peers = TextContainerHelper.GetAutomationPeersFromRange(owner.TextContainer.Start, owner.TextContainer.End, null);
src\Framework\System\Windows\Automation\Peers\TextElementAutomationPeer.cs (2)
46return TextContainerHelper.GetAutomationPeersFromRange(textElement.ContentStart, textElement.ContentEnd, null); 229return TextContainerHelper.GetAutomationPeersFromRange(start, end, textElement.ContentStart);