AutomationElement Fields


.NET Framework Class Library
AutomationElement..::.AutomationIdProperty Field

Identifies the AutomationId property, which is used to identify elements.

Namespace:  System.Windows.Automation
Assembly:  UIAutomationClient (in UIAutomationClient.dll)
Syntax

Visual Basic (Declaration)
Public Shared ReadOnly AutomationIdProperty As AutomationProperty
Visual Basic (Usage)
Dim value As AutomationProperty

value = AutomationElement.AutomationIdProperty
C#
public static readonly AutomationProperty AutomationIdProperty
Visual C++
public:
static initonly AutomationProperty^ AutomationIdProperty
JScript
public static final var AutomationIdProperty : AutomationProperty
Remarks

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

This property can also be retrieved from the Current or Cached properties.

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

The AutomationIdProperty of an element is always the same in any instance of the application on any machine, regardless of the local language. If the property is supported by the element, the value is unique among sibling elements but not necessarily unique on the desktop. For example, multiple instances of an application, or multiple folder views in Microsoft Windows Explorer, may contain elements with the same AutomationIdProperty, such as "SystemMenuBar".

Instances of user interface (UI) elements are uniquely identified on the desktop by their RuntimeIdProperty properties.

NoteNote:

AutomationIdProperty is supported by all UI Automation elements in the control view except top-level application windows, UI Automation elements derived from Windows Presentation Foundation (WPF) controls that do not have an ID or x:Uid, and UI Automation elements derived from Win32 controls that do not have a control ID.

Examples

The following example retrieves the current value of the property. The default value is returned if the element does not provide one.

Visual Basic
Dim autoId As String = _
    CStr(autoElement.GetCurrentPropertyValue(AutomationElement.AutomationIdProperty))
C#
string autoId =
    autoElement.GetCurrentPropertyValue(AutomationElement.AutomationIdProperty) as string;

The following example retrieves the current value of the property, but specifies that if the element itself does not provide a value for the property, NotSupported is to be returned instead of a default value.

Visual Basic
Dim autoIdString As String
Dim autoIdNoDefault As Object = autoElement.GetCurrentPropertyValue(AutomationElement.AutomationIdProperty, True)
If autoIdNoDefault Is AutomationElement.NotSupported Then
    ' TODO Handle the case where you do not wish to proceed using the default value.
Else
    autoIdString = CStr(autoIdNoDefault)
End If
C#
string autoIdString;
object autoIdNoDefault =
    autoElement.GetCurrentPropertyValue(AutomationElement.AutomationIdProperty, true);
if (autoIdNoDefault == AutomationElement.NotSupported)
{
    // TODO Handle the case where you do not wish to proceed using the default value.
}
else
{
    autoIdString = autoIdNoDefault as string;
}
.NET Framework Security

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Other Resources

Tags :


Page view tracker