AutomationElement.IsExpandCollapsePatternAvailableProperty Feld

Definition

Bezeichnet die Eigenschaft, die angibt, ob das ExpandCollapsePattern-Steuerelementmuster für dieses AutomationElement verfügbar ist.

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

Feldwert

AutomationProperty

Beispiele

Im folgenden Beispiel wird ein Wert abgerufen, der angibt, ob ein angegebenes Steuerelementmuster von einem AutomationElementunterstützt wird.

// 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.

Gilt für

Siehe auch