Inspector.Close Method (Outlook)
Closes the Inspector and optionally saves changes to the displayed Outlook item.
Syntax
expression .Close(SaveMode)
expression A variable that represents an Inspector object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
SaveMode |
Required |
The close behavior. If the item displayed within the inspector has not been changed, this argument has no effect. |
Remarks
Note
Do not use this method from within the Inspector.Activate Event (Outlook) event handler.
Example
This Visual Basic for Applications (VBA) example saves and closes the item displayed in the active inspector without prompting the user. To run this example, you need to have an item displayed in an inspector window.
Sub CloseItem()
Dim myinspector As Outlook.Inspector
Dim myItem As Outlook.MailItem
Set myinspector = Application.ActiveInspector
Set myItem = myinspector.CurrentItem
myItem.Close olSave
End Sub