2 types derived from ContentTextAutomationPeer
PresentationFramework (2)
src\Framework\System\Windows\Automation\Peers\DocumentAutomationPeer.cs (1)
25public class DocumentAutomationPeer : ContentTextAutomationPeer
src\Framework\System\Windows\Automation\Peers\TextElementAutomationPeer.cs (1)
26public class TextElementAutomationPeer : ContentTextAutomationPeer
5 references to ContentTextAutomationPeer
PresentationFramework (5)
src\Framework\System\Windows\Controls\TextAdaptor.cs (2)
56Invariant.Assert(textPeer is TextAutomationPeer || textPeer is ContentTextAutomationPeer, "Invalid AutomationPeer"); 570childElement = ((ContentTextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider);
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (3)
1422provider = ((ContentTextAutomationPeer)_textPeer).ProviderFromPeer(peer); 1433Invariant.Assert(peer is TextAutomationPeer || peer is ContentTextAutomationPeer); 1440peers = ((ContentTextAutomationPeer)peer).GetAutomationPeersFromRange(start, end);