Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 3.43 KB

textboxautomationpeer.md

File metadata and controls

40 lines (26 loc) · 3.43 KB
-api-id -api-type
T:Windows.UI.Xaml.Automation.Peers.TextBoxAutomationPeer
winrt class

Windows.UI.Xaml.Automation.Peers.TextBoxAutomationPeer

-description

Exposes TextBox types to Microsoft UI Automation.

-remarks

The Windows Runtime TextBox class creates a new TextBoxAutomationPeer as its OnCreateAutomationPeer definition. Derive your automation peer from TextBoxAutomationPeer if you are deriving a custom class from TextBox and want to add automation support for additional features that you enabled in your custom class. Then override OnCreateAutomationPeer so that it returns your custom peer.

Default peer implementation and overrides in TextBoxAutomationPeer

TextBoxAutomationPeer has overrides of Core methods such that the associated AutomationPeer methods provide peer-specific information to a Microsoft UI Automation client.

The peer also has other behaviors that are provided by the base FrameworkElementAutomationPeer class. For more info, see "Base implementation in FrameworkElementAutomationPeer" section of Custom automation peers.

TextPattern support

TextBoxAutomationPeer supports the TextPattern and ValuePattern Microsoft UI Automation patterns. The support for these pattern is implemented as native code by the peer, so you won't see public API for the TextBoxAutomationPeer peer class that exposes the pattern implementation for extension. And you won't see ITextRangeProvider and the similar managed interfaces in the TextBoxAutomationPeer inheritance. But Microsoft UI Automation clients can use the TextPattern and ValuePattern patterns implemented by this peer and call the native API surface through Microsoft UI Automation.

-examples

-see-also

TextBox, FrameworkElementAutomationPeer, Custom automation peers