AutomationElement.FrameworkIdProperty Feld

Definition

Gibt die FrameworkId-Eigenschaft an.

public: static initonly System::Windows::Automation::AutomationProperty ^ FrameworkIdProperty;
public static readonly System.Windows.Automation.AutomationProperty FrameworkIdProperty;
 staticval mutable FrameworkIdProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly FrameworkIdProperty As AutomationProperty 

Feldwert

AutomationProperty

Beispiele

Im folgenden Beispiel wird der aktuelle Wert der Eigenschaft abgerufen.

string frameworkId =
   autoElement.GetCurrentPropertyValue(AutomationElement.FrameworkIdProperty)
   as string;
Dim frameworkId As String = _
    CStr(autoElement.GetCurrentPropertyValue(AutomationElement.FrameworkIdProperty))

Hinweise

Dieser Bezeichner wird von Benutzeroberflächenautomatisierung Clientanwendungen verwendet. Benutzeroberflächenautomatisierung Anbieter sollten den entsprechenden Bezeichner in AutomationElementIdentifiers.

Rückgabewerte der Eigenschaft sind vom Typ String. Der Standardwert ist eine leere Zeichenfolge.

Mit dieser Eigenschaft können Anwendungen spezielle Fälle auf gesamte UI-Frameworks anwenden. Beispiele für Eigenschaftswerte sind "Win32", "WinForm" und "DirectUI".

Gilt für

Siehe auch