TableView.Reset Method

Outlook Developer Reference

Resets a built-in Microsoft Outlook view to its original settings.

Version Information
 Version Added:  Outlook 2007

Syntax

expression.Reset

expression   A variable that represents a TableView object.

Remarks

This method works only on built-in Outlook views.

Example

The following Visual Basic for Applications (VBA) example resets all built-in views in the user's Inbox default folder to their original settings. The Standard property is returned to determine if the view is a built-in Outlook view.

Visual Basic for Applications
  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.<strong>Reset</strong>
    End If
Next objView

End Sub

See Also