Outlook) (BusinessCardView.Reset 方法
將內建的 Microsoft Outlook 檢視重設為其原始設定。
語法
expression。 Reset
表達 會傳回 BusinessCardView 物件的運算式。
註解
此方法只能在內建的 Outlook 檢視中使用。
範例
下列 Visual Basic for Applications (VBA) 範例會將使用者 [ 收件匣 ] 預設資料夾中的所有內建檢視重設為其原始設定。 系統會傳回 Standard 屬性,以判斷檢視是否為內建的 Outlook 檢視。
Sub ResetInboxViews()
Dim objName As NameSpace
Dim objViews As Views
Dim objView As View
' Get the Views collection of the Inbox default folder.
Set objName = Application.GetNamespace("MAPI")
Set objViews = objName.GetDefaultFolder(olFolderInbox).Views
' Enumerate the Views collection, calling the Reset
' method for each View object with its Standard
' property value set to True.
For Each objView In objViews
If objView.Standard = True Then
objView.Reset
End If
Next objView
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。