Outlook) (MailItem.AutoResolvedWinner 屬性
會傳回 Boolean 值,它決定項目是否為自動解決衝突的勝出結果。 唯讀。
語法
expression。 AutoResolvedWinner
表達 代表 MailItem 物件的 變數。
註解
False 值不一定會指出項目是自動解決衝突的淘汰項目。 這個項目可能與另一個項目衝突。
如果專案之 MailItem.Conflicts屬性的Conflicts.Count大於零,而且其AutoResolvedWinner屬性為True,則它是自動解決衝突的勝出項目。 反過來說,如果項目發生衝突,而且其 AutoResolvedWinner 屬性為 False,則它是自動解決衝突的淘汰項目。
範例
下列 Microsoft Visual Basic for Applications (VBA) 範例會使用 AutoResolvedWinner 屬性,判斷項目在自動解決衝突中是勝出項目還是淘汰項目。 若要執行此範例,請確定使用中視窗中已開啟電子郵件專案。
Sub ConflictStatus()
Dim mail As Outlook.MailItem
Set mail = Application.ActiveInspector.CurrentItem
If mail.Conflicts.Count > 0 Then
If mail.AutoResolvedWinner = True Then
MsgBox "This item is a winner in an automatic conflict resolution."
Else
MsgBox "This item is a loser in an automatic conflict resolution."
End If
Else
MsgBox "This item is not in conflict with any item."
End If
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。