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