AutomationElement.Current プロパティ

定義

AutomationElement の現在のプロパティ値を取得します。

public:
 property System::Windows::Automation::AutomationElement::AutomationElementInformation Current { System::Windows::Automation::AutomationElement::AutomationElementInformation get(); };
public System.Windows.Automation.AutomationElement.AutomationElementInformation Current { get; }
member this.Current : System.Windows.Automation.AutomationElement.AutomationElementInformation
Public ReadOnly Property Current As AutomationElement.AutomationElementInformation

プロパティ値

AutomationElement.AutomationElementInformation

現在のプロパティ値を格納する構造体。

例外

AutomationElement の UI はなくなりました。

次の例は、リストで Current 選択されている項目の名前を取得するためにプロパティを使用する方法を示しています。

/// <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 void OnSelect(object src, AutomationEventArgs e)
{
    // Get the name of the item, which is equivalent to its text.
    AutomationElement element = src as AutomationElement;
    if (element != null)
    {
        Console.WriteLine(element.Current.Name + " was selected.");
    }
}
''' <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

注釈

UI オートメーション プロパティのアクセサーは、返されるCurrent構造体のプロパティとして表されます。 構造体を取得する必要はありません。次の例のように、そのメンバーに直接アクセスできます。 使用可能なプロパティとその使用方法の詳細については、次を参照してください AutomationElement.AutomationElementInformation

この要素のUI オートメーションプロパティのキャッシュされた値を取得するには、プロパティをCached使用します。

適用対象

こちらもご覧ください