IUIAutomation::CreateOrConditionFromNativeArray 方法 (uiautomationclient.h)
创建两个或更多条件的组合,其中存在匹配项(如果任一条件为 true)。
语法
HRESULT CreateOrConditionFromNativeArray(
[in] IUIAutomationCondition **conditions,
[in] int conditionCount,
[out, retval] IUIAutomationCondition **newCondition
);
参数
[in] conditions
类型: IUIAutomationCondition**
指向要组合的条件数组的指针。
[in] conditionCount
类型: int
条件中的元素数。
[out, retval] newCondition
类型: IUIAutomationCondition**
接收指向组合条件的指针。
返回值
类型: HRESULT
如果该方法成功,则返回 S_OK。 否则,将返回 HRESULT 错误代码。
注解
此方法对条件数组中的每个指针调用 AddRef。 这意味着,可以在调用 CreateOrConditionFromNativeArray 返回后对这些指针调用 Release,而不会使从 CreateOrConditionFromNativeArray 返回的指针失效。 在从 CreateOrConditionFromNativeArray 返回的指针上调用 Release 时,UI 自动化对条件数组中的每个指针调用 Release。
要求
最低受支持的客户端 | Windows 7、带 SP2 的 Windows Vista 和适用于 Windows Vista 的平台更新、带 SP3 的 Windows XP 和适用于 Windows Vista 的平台更新 [仅限桌面应用] |
最低受支持的服务器 | Windows Server 2008 R2、带 SP2 的 Windows Server 2008 和适用于 Windows Server 2008 的平台更新、带 SP2 的 Windows Server 2003 和适用于 Windows Server 2008 的平台更新 [仅限桌面应用] |
目标平台 | Windows |
标头 | uiautomationclient.h (包括 UIAutomation.h) |
另请参阅
引用