AutomationElement.IsOffscreenProperty 字段
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
IsOffscreen标识 属性,该属性指示用户界面 (UI) 项在屏幕上是否可见。
public: static initonly System::Windows::Automation::AutomationProperty ^ IsOffscreenProperty;
public static readonly System.Windows.Automation.AutomationProperty IsOffscreenProperty;
staticval mutable IsOffscreenProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly IsOffscreenProperty As AutomationProperty
字段值
示例
以下示例检索 属性的当前值。 如果 元素未提供默认值,则返回默认值。
bool isControlOffscreen = (bool)
autoElement.GetCurrentPropertyValue(AutomationElement.IsOffscreenProperty);
Dim isControlOffscreen As Boolean = _
CBool(autoElement.GetCurrentPropertyValue(AutomationElement.IsOffscreenProperty))
以下示例检索属性的当前值,但指定如果元素本身不为属性提供值, NotSupported 则返回而不是默认值。
bool isControlOffscreen1;
object isOffscreenNoDefault =
autoElement.GetCurrentPropertyValue(AutomationElement.IsOffscreenProperty, true);
if (isOffscreenNoDefault == AutomationElement.NotSupported)
{
// TODO Handle the case where you do not wish to proceed using the default value.
}
else
{
isControlOffscreen1 = (bool)isOffscreenNoDefault;
}
Dim isControlOffscreen1 As Boolean
Dim isOffscreenNoDefault As Object = autoElement.GetCurrentPropertyValue(AutomationElement.IsOffscreenProperty, True)
If isOffscreenNoDefault Is AutomationElement.NotSupported Then
' TODO Handle the case where you do not wish to proceed using the default value.
Else
isControlOffscreen1 = CBool(isOffscreenNoDefault)
End If
注解
UI 自动化客户端应用程序使用此标识符。 UI 自动化提供程序应使用 中的 AutomationElementIdentifiers等效标识符。
也可以从 Current 或 Cached 属性检索此属性。
返回值为 类型 Boolean,默认值为 false
。
有关此属性何时为 true
的详细信息,请参阅 IsOffscreen。