AutomationElement.IsDockPatternAvailableProperty Feld
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Bezeichnet die Eigenschaft, die angibt, ob das DockPattern-Steuerelementmuster für dieses AutomationElement verfügbar ist.
public: static initonly System::Windows::Automation::AutomationProperty ^ IsDockPatternAvailableProperty;
public static readonly System.Windows.Automation.AutomationProperty IsDockPatternAvailableProperty;
staticval mutable IsDockPatternAvailableProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly IsDockPatternAvailableProperty As AutomationProperty
Feldwert
Beispiele
Im folgenden Beispiel wird ermittelt, ob ein angegebenes Steuerelementmuster durch ein AutomationElement.
// TODO Substitute the appropriate field for IsDockPatternAvailableProperty.
bool isPatternAvailable = (bool)
autoElement.GetCurrentPropertyValue(AutomationElement.IsDockPatternAvailableProperty);
' TODO Substitute the appropriate field for IsDockPatternAvailableProperty.
Dim isPatternAvailable As Boolean = _
CBool(autoElement.GetCurrentPropertyValue(AutomationElement.IsDockPatternAvailableProperty))
Hinweise
Dieser Bezeichner wird von Benutzeroberflächenautomatisierung Clientanwendungen verwendet. Benutzeroberflächenautomatisierung Anbieter sollten den entsprechenden Bezeichner in AutomationElementIdentifiersverwenden.
Rückgabewerte der Eigenschaft sind vom Typ Boolean. Der Standardwert für die Eigenschaft ist false
.