AutomationElement.Current Property
Gets the current property values of the AutomationElement.
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.AutomationElementInformationA structure containing the current property values.
| Exception | Condition |
|---|---|
| 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
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.