AutomationElement.IsRequiredForFormProperty 字段

定义

标识 IsRequiredForForm 属性。

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

字段值

AutomationProperty

示例

以下示例检索属性的当前值。 如果元素未提供默认值,则返回默认值。

bool isRequired = (bool)
   autoElement.GetCurrentPropertyValue(AutomationElement.IsRequiredForFormProperty);
Dim isRequired As Boolean = _
    CBool(autoElement.GetCurrentPropertyValue(AutomationElement.IsRequiredForFormProperty))

注解

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

也可以从 CurrentCached 属性检索此属性。

此属性的返回值的类型 Boolean,默认值为 false

适用于

另请参阅