Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

AutomationElement.FrameworkIdProperty Field

Definition

Namespace:
System.Windows.Automation
Assembly:
UIAutomationClient.dll

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.

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


Feedback

Was this page helpful?