Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Closes and optionally saves changes to the Outlook item.
Syntax
expression.Close (SaveMode)
expression A variable that represents a MailItem object.
Parameters
| Name | Required/Optional | Data type | Description |
|---|---|---|---|
| SaveMode | Required | OlInspectorClose | The close behavior. If the item displayed within the inspector has not been changed, this argument has no effect. |
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
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.