Freigeben über


Automation.PropertyName(AutomationProperty) Methode

Definition

Ruft den Namen der angegebenen Benutzeroberflächenautomatisierung-Eigenschaft ab.

public:
 static System::String ^ PropertyName(System::Windows::Automation::AutomationProperty ^ property);
public static string PropertyName (System.Windows.Automation.AutomationProperty property);
static member PropertyName : System.Windows.Automation.AutomationProperty -> string
Public Shared Function PropertyName (property As AutomationProperty) As String

Parameter

property
AutomationProperty

Der Benutzeroberflächenautomatisierung Eigenschaftsbezeichner der benannten Eigenschaft.

Gibt zurück

String

Der Anzeigename der Benutzeroberflächenautomatisierung-Eigenschaft oder eines NULL-Verweises (Nothingin Visual Basic), wenn die angegebene Benutzeroberflächenautomatisierung-Eigenschaft nicht gefunden wird.

Beispiele

Im folgenden Beispiel wird der Name jeder Eigenschaft angezeigt, die von einer AutomationElement.

AutomationProperty[] properties = element.GetSupportedProperties();
foreach (AutomationProperty prop in properties)
{
    Console.WriteLine(prop.ProgrammaticName);
    Console.WriteLine(Automation.PropertyName(prop));
}
Dim properties As AutomationProperty() = element.GetSupportedProperties()
Dim prop As AutomationProperty
For Each prop In properties
    Console.WriteLine(prop.ProgrammaticName)
    Console.WriteLine(Automation.PropertyName(prop))
Next prop

Gilt für