AutomationElement.IsExpandCollapsePatternAvailableProperty 字段

定义

标识表示在此 ExpandCollapsePatternAutomationElement 控件模式是否可用的属性。

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 

字段值

AutomationProperty

示例

以下示例检索一个值,该值指定指定的控件模式是否受某个控件 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))

注解

此标识符由UI 自动化客户端应用程序使用。 UI 自动化提供程序应使用等效标识符。AutomationElementIdentifiers

属性的返回值的类型 Boolean。 属性的默认值为 false.

适用于

另请参阅