AutomationElement.IsExpandCollapsePatternAvailableProperty Field
Definition
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 ExpandCollapsePattern control pattern is available on this AutomationElement.
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
Field Value
Examples
The following example retrieves a value that specifies 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
.