AutomationElement.FrameworkIdProperty Field

Definition

Identifies the FrameworkId property.

public: static initonly System::Windows::Automation::AutomationProperty ^ FrameworkIdProperty;
public static readonly System.Windows.Automation.AutomationProperty FrameworkIdProperty;
 staticval mutable FrameworkIdProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly FrameworkIdProperty As AutomationProperty 

Field Value

Examples

The following example retrieves the current value of the property.

string frameworkId =
   autoElement.GetCurrentPropertyValue(AutomationElement.FrameworkIdProperty)
   as string;
Dim frameworkId As String = _
    CStr(autoElement.GetCurrentPropertyValue(AutomationElement.FrameworkIdProperty))

Remarks

This identifier is used by UI Automation client applications. UI Automation providers should use the equivalent identifier in AutomationElementIdentifiers.

Return values of the property are of type String. The default value is an empty string.

This property enables applications to apply special cases to entire UI frameworks. Examples of property values are "Win32", "WinForm", and "DirectUI".

Applies to

See also