AutomationElement.IsWindowPatternAvailableProperty Field

Definition

Identifies the property that indicates whether the WindowPattern control pattern is available on this AutomationElement.

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

Field Value

Examples

The following example ascertains whether a specified control pattern is supported by an 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))

Remarks

This identifier is used by UI Automation client applications. UI Automation providers should use the equivalent identifier in AutomationElementIdentifiers.

Return values of the property are of type Boolean. The default value for the property is false.

Applies to

See also