Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

AutomationElement.IsScrollItemPatternAvailableProperty Field

Definition

Namespace:
System.Windows.Automation
Assembly:
UIAutomationClient.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

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


Feedback

Was this page helpful?