2 types derived from ContentTextAutomationPeer
PresentationFramework (2)
System\Windows\Automation\Peers\DocumentAutomationPeer.cs (1)
23public class DocumentAutomationPeer : ContentTextAutomationPeer
System\Windows\Automation\Peers\TextElementAutomationPeer.cs (1)
24public class TextElementAutomationPeer : ContentTextAutomationPeer
5 references to ContentTextAutomationPeer
PresentationFramework (5)
System\Windows\Controls\TextAdaptor.cs (2)
48Invariant.Assert(textPeer is TextAutomationPeer || textPeer is ContentTextAutomationPeer, "Invalid AutomationPeer"); 586childElement = ((ContentTextAutomationPeer)_textPeer).ElementFromProvider(childElementProvider);
System\Windows\Controls\TextRangeAdaptor.cs (3)
1413provider = ((ContentTextAutomationPeer)_textPeer).ProviderFromPeer(peer); 1424Invariant.Assert(peer is TextAutomationPeer || peer is ContentTextAutomationPeer); 1431peers = ((ContentTextAutomationPeer)peer).GetAutomationPeersFromRange(start, end);