AutomationElement.FromLocalProvider(IRawElementProviderSimple) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves a new AutomationElement object from a local IRawElementProviderSimple implementation.
public:
static System::Windows::Automation::AutomationElement ^ FromLocalProvider(System::Windows::Automation::Provider::IRawElementProviderSimple ^ localImpl);
public static System.Windows.Automation.AutomationElement FromLocalProvider (System.Windows.Automation.Provider.IRawElementProviderSimple localImpl);
static member FromLocalProvider : System.Windows.Automation.Provider.IRawElementProviderSimple -> System.Windows.Automation.AutomationElement
Public Shared Function FromLocalProvider (localImpl As IRawElementProviderSimple) As AutomationElement
Parameters
- localImpl
- IRawElementProviderSimple
The provider object.
Returns
An AutomationElement that represents the element served by the provider object.
Remarks
This method might be used by a client helper library to enable its callers to access its own native element type. For example, WPF uses this method internally so that it can return an AutomationElement to clients that want to get a UI Automation element directly from a UIElement.