CalendarView.Reset 方法 (Outlook)

将内置的 Microsoft Outlook 视图重置为原始设置。

语法

expressionReset

表达 一个代表 CalendarView 对象的变量。

备注

此方法仅应用于内置 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。