Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 1.97 KB

File metadata and controls

25 lines (17 loc) · 1.97 KB
-api-id -api-type
T:Microsoft.UI.Xaml.Automation.Provider.IDockProvider
winrt interface

Microsoft.UI.Xaml.Automation.Provider.IDockProvider

-description

Exposes methods and properties to support access by a Microsoft UI Automation client to controls that expose their dock properties in a docking container. Implement this interface in order to support the capabilities that an automation client requests with a AutomationPeer.GetPattern call and PatternInterface.Dock.

-remarks

A docking container is a control that allows you to arrange child elements horizontally and vertically, relative to each other. For more info on what this pattern is for, see Dock Control Pattern.

IDockProvider isn't implemented by any existing Windows Runtime automation peers. The interface exists so that custom control authors can support the automation pattern in a custom control, and implement their automation support using the same Windows Runtime managed or C++ API as they use to define control logic or other automation support.

Use DockPatternIdentifiers if you want to reference the IDockProvider pattern properties from control code when you fire automation events or call AutomationPeer.RaisePropertyChangedEvent.

-examples

-see-also

DockPatternIdentifiers, IDockProvider (COM interface), Custom automation peers, Dock Control Pattern