IUIAutomation::CreateAndCondition 方法 (uiautomationclient.h)
建立條件,以選取符合兩個條件的元素。
語法
HRESULT CreateAndCondition(
[in] IUIAutomationCondition *condition1,
[in] IUIAutomationCondition *condition2,
[out, retval] IUIAutomationCondition **newCondition
);
參數
[in] condition1
要比對之第一個條件的指標。
[in] condition2
要比對之第二個條件的指標。
[out, retval] newCondition
類型: IUIAutomationCondition**
接收合併條件的指標。
傳回值
類型: HRESULT
如果此方法成功,則會傳回 S_OK。 否則,它會傳回 HRESULT 錯誤碼。
備註
您可以使用 IUIAutomation::CreateAndConditionFromArray 或 IUIAutomation::CreateAndConditionFromNativeArray 來建立結合兩個以上簡單條件的條件。
CreateAndCondition 方法會在 condition1 和 condition2 指標上呼叫 AddRef。 這表示您可以在呼叫 CreateAndCondition 傳回之後,在這兩個指標上呼叫 Release,而不會使 CreateAndCondition 傳回的指標失效。 當您在 CreateAndCondition 傳回的指標上呼叫 Release 時,使用者介面自動化 在 condition1 和 condition2 指標上呼叫 Release。
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | Windows 7、Windows Vista sp2 和 Platform Update for Windows Vista、Windows XP with SP3 和 Platform Update for Windows Vista [僅限桌面應用程式] |
最低支援的伺服器 | Windows Server 2008 R2、Windows Server 2008 SP2 和 Platform Update for Windows Server 2008、Windows Server 2003 SP2 和 Platform Update for Windows Server 2008 [僅限桌面應用程式] |
目標平台 | Windows |
標頭 | uiautomationclient.h (包含 UIAutomation.h) |
另請參閱
參考