Saved Property

Microsoft Outlook Visual Basic

True if the Microsoft Outlook item has not been modified since the last save. Read-only Boolean.

expression.Saved

expression    Required. An expression that returns one of the objects in the Applies To list.

Example

This Microsoft Visual Basic/Visual Basic for Applications (VBA) example tests for the Close event and if the item has not been Saved, it uses the Save method to save the item without prompting the user.

Public WithEvents myItem As Outlook.MailItem

Public Sub Initalize_Handler()
	Set myItem = Application.ActiveInspector.CurrentItem
End Sub

Private Sub myItem_Close(Cancel As Boolean)
	If Not myItem.Saved Then
 	   myItem.Save
	   MsgBox "Item was saved."
	End If
End Sub