2 types derived from ContentTextAutomationPeer
PresentationFramework (2)
System\Windows\Automation\Peers\DocumentAutomationPeer.cs (1)
21public class DocumentAutomationPeer : ContentTextAutomationPeer
System\Windows\Automation\Peers\TextElementAutomationPeer.cs (1)
20public class TextElementAutomationPeer : ContentTextAutomationPeer
5 references to ContentTextAutomationPeer
PresentationFramework (5)
System\Windows\Controls\TextAdaptor.cs (2)
45Invariant.Assert(textPeer is TextAutomationPeer || textPeer is ContentTextAutomationPeer, "Invalid AutomationPeer"); 583childElement = ((ContentTextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider);
System\Windows\Controls\TextRangeAdaptor.cs (3)
1411provider = ((ContentTextAutomationPeer)_textPeer).ProviderFromPeer(peer); 1422Invariant.Assert(peer is TextAutomationPeer || peer is ContentTextAutomationPeer); 1429peers = ((ContentTextAutomationPeer)peer).GetAutomationPeersFromRange(start, end);