Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 3.32 KB

richeditboxautomationpeer.md

File metadata and controls

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

Windows.UI.Xaml.Automation.Peers.RichEditBoxAutomationPeer

-description

Exposes RichEditBox types to Microsoft UI Automation.

-remarks

The Windows Runtime RichEditBox class creates a new RichEditBoxAutomationPeer as its OnCreateAutomationPeer definition. Derive your automation peer from RichEditBoxAutomationPeer if you are deriving a custom class from RichEditBox 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 RichEditBoxAutomationPeer

RichEditBoxAutomationPeer 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

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

-examples

-see-also

RichEditBox, FrameworkElementAutomationPeer, Custom automation peers