IUIAutomationElement7::FindAllWithOptions 方法(uiautomationclient.h)

按指定顺序查找所有匹配的元素。

语法

HRESULT FindAllWithOptions(
                 TreeScope                 scope,
  [in]           IUIAutomationCondition    *condition,
                 TreeTraversalOptions      traversalOptions,
  [in, optional] IUIAutomationElement      *root,
  [out]          IUIAutomationElementArray **found
);

参数

scope

指定搜索范围的值的组合。

[in] condition

指向表示要匹配的条件的条件的指针。

traversalOptions

指定树导航顺序的枚举值。

[in, optional] root

指向开始搜索的元素的指针。

[out] found

接收指向匹配元素数组的指针。 如果未找到匹配的元素,则返回空数组。

返回值

如果成功,则返回 S_OK;否则返回 HRESULT 错误代码。

要求

要求 价值
最低支持的客户端 Windows 10 版本 1703 [仅限桌面应用]
支持的最低服务器 Windows Server 2016 [仅限桌面应用]
目标平台 窗户
标头 uiautomationclient.h (包括 UIAutomation.h)
DLL UIAutomationCore.dll

另请参阅

IUIAutomationElement7