AutomationElement.IsScrollItemPatternAvailableProperty Field

Definition

Identifies the property that indicates whether the ScrollItemPattern control pattern is available for this AutomationElement.

public: static initonly System::Windows::Automation::AutomationProperty ^ IsScrollItemPatternAvailableProperty;
public static readonly System.Windows.Automation.AutomationProperty IsScrollItemPatternAvailableProperty;
 staticval mutable IsScrollItemPatternAvailableProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly IsScrollItemPatternAvailableProperty 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