HyperlinkButtonAutomationPeer
HyperlinkButtonAutomationPeer
HyperlinkButtonAutomationPeer
HyperlinkButtonAutomationPeer
Class
Definition
Exposes HyperlinkButton types to Microsoft UI Automation.
public : class HyperlinkButtonAutomationPeer : ButtonBaseAutomationPeer, IHyperlinkButtonAutomationPeer, IInvokeProviderpublic class HyperlinkButtonAutomationPeer : ButtonBaseAutomationPeer, IHyperlinkButtonAutomationPeer, IInvokeProviderPublic Class HyperlinkButtonAutomationPeer Inherits ButtonBaseAutomationPeer Implements IHyperlinkButtonAutomationPeer, IInvokeProvider// This API is not available in Javascript.
- Inheritance
-
FrameworkElementAutomationPeerFrameworkElementAutomationPeerFrameworkElementAutomationPeerFrameworkElementAutomationPeerHyperlinkButtonAutomationPeerHyperlinkButtonAutomationPeerHyperlinkButtonAutomationPeerHyperlinkButtonAutomationPeer
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited methods
Inherited properties
Remarks
The Windows Runtime HyperlinkButton class creates a new HyperlinkButtonAutomationPeer as its OnCreateAutomationPeer definition. Derive your automation peer from HyperlinkButtonAutomationPeer if you are deriving a custom class from HyperlinkButton 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 HyperlinkButtonAutomationPeer
HyperlinkButtonAutomationPeer has overrides of Core methods such that the associated AutomationPeer methods provide peer-specific information to a Microsoft UI Automation client.
- GetPattern reports that the peer provides pattern support for PatternInterface.Invoke (IInvokeProvider ).
- GetClassName returns "Hyperlink".
- GetAutomationControlType returns AutomationControlType.Hyperlink.
- IsControlElement returns true. This peer has the immediate base class ButtonBaseAutomationPeer and inherits its behavior other than the overrides indicated above. Notably, GetName returns a string value based on examining the current Content. For more info, see ButtonBaseAutomationPeer.
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.
Constructors
HyperlinkButtonAutomationPeer(HyperlinkButton) HyperlinkButtonAutomationPeer(HyperlinkButton) HyperlinkButtonAutomationPeer(HyperlinkButton) HyperlinkButtonAutomationPeer(HyperlinkButton)
Initializes a new instance of the HyperlinkButtonAutomationPeer class.
public : HyperlinkButtonAutomationPeer(HyperlinkButton owner)public HyperlinkButtonAutomationPeer(HyperlinkButton owner)Public Sub New(owner As HyperlinkButton)// This API is not available in Javascript.
The owner element to create for.
Methods
Invoke() Invoke() Invoke() Invoke()
Sends a request to click the hyperlink button associated with the automation peer.
public : void Invoke()public void Invoke()Public Function Invoke() As void// This API is not available in Javascript.
Remarks
Calls to Invoke should return immediately without blocking. However, this behavior is entirely dependent on the Microsoft UI Automation provider implementation. In scenarios where calling Invoke causes a blocking issue, such as a modal dialog, a separate helper thread may be required to call the method.