View.Save Method

Outlook Developer Reference

Saves the view, or saves the changes to a view.

Syntax

expression.Save

expression   A variable that represents a View object.

Remarks

Always use Save to save a view after you change any property of the view.

Example

The following VBA example creates a new view called New Table and applies it.

Visual Basic for Applications
  Sub CreateView()
    'Creates a new view
    Dim objName As Outlook.NameSpace
    Dim objViews As Outlook.Views
    Dim objNewView As Outlook.View
Set objName = Application.GetNamespace("MAPI")
Set objViews = objName.GetDefaultFolder(olFolderInbox).Views
Set objNewView = objViews.Add(Name:="New Table", _
                 ViewType:=olTableView)
objNewView.<strong>Save</strong>
objNewView.Apply

End Sub

See Also