Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

AutomationElement.Current Property

Gets the current property values of the AutomationElement.

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

'Declaration
Public ReadOnly Property Current As AutomationElement..::.AutomationElementInformation
'Usage
Dim instance As AutomationElement 
Dim value As AutomationElement..::.AutomationElementInformation 

value = instance.Current

Property Value

Type: System.Windows.Automation.AutomationElement.AutomationElementInformation
A structure containing the current property values.

ExceptionCondition
ElementNotAvailableException

The UI for the AutomationElement no longer exists.

The accessors for UI Automation properties are represented as properties of the structure returned by Current. You do not need to retrieve the structure; you can access its members directly, as in the example below. For specific information on the properties available and their use, see AutomationElement.AutomationElementInformation.

To get the cached value of UI Automation properties on this element, use the Cached property.

The following example shows how the Current property is used to retrieve the name of an item that has been selected in a list.

''' <summary> 
''' Handles ElementSelected events by showing a message. 
''' </summary> 
''' <param name="src">Object that raised the event; in this case, a list item.</param> 
''' <param name="e">Event arguments.</param> 
Private Sub OnSelect(ByVal src As Object, ByVal e As AutomationEventArgs)
    ' Get the name of the item, which is equivalent to its text. 
    Dim element As AutomationElement = DirectCast(src, AutomationElement)
    If (element IsNot Nothing) Then
        Console.WriteLine(element.Current.Name + " was selected.")
    End If 

End Sub 'OnSelect

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.

.NET Framework

Supported in: 3.5, 3.0

Community Additions

Show:
© 2017 Microsoft