ContentElementAutomationPeer.CreatePeerForElement(ContentElement) Method

Definition

Creates a ContentElementAutomationPeer for the specified ContentElement.

public:
 static System::Windows::Automation::Peers::AutomationPeer ^ CreatePeerForElement(System::Windows::ContentElement ^ element);
public static System.Windows.Automation.Peers.AutomationPeer CreatePeerForElement (System.Windows.ContentElement element);
static member CreatePeerForElement : System.Windows.ContentElement -> System.Windows.Automation.Peers.AutomationPeer
Public Shared Function CreatePeerForElement (element As ContentElement) As AutomationPeer

Parameters

element
ContentElement

The ContentElement that is associated with this ContentElementAutomationPeer.

Returns

The ContentElementAutomationPeer for the specified ContentElement.

Remarks

This ContentElementAutomationPeer remains in memory until the associated ContentElement is destroyed.

The same instance of the ContentElementAutomationPeer is returned from subsequent calls to this method and to calls to FromElement. The type of the peer is determined by the OnCreateAutomationPeer virtual callback. If FrameworkContentElement does not implement the callback, no ContentElementAutomationPeer is created and this method returns null.

Applies to