Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 1.56 KB

Outlook.ContactItem.Close(even).md

File metadata and controls

50 lines (29 loc) · 1.56 KB
title api_name ms.assetid ms.date ms.localizationpriority
ContactItem.Close event (Outlook)
Outlook.ContactItem.Close
beeeb53c-94fe-ae1b-7870-87bd37b3debf
12/17/2019
medium

ContactItem.Close event (Outlook)

Occurs when the inspector associated with an item (which is an instance of the parent object) is being closed.

Syntax

expression.Close (Cancel)

expression A variable that represents a ContactItem object.

Parameters

Name Required/Optional Data type Description
Cancel Required Boolean (Not used in VBScript). False when the event occurs. If the event procedure sets this argument to True, the close operation is not completed and the inspector is left open.

Remarks

In Microsoft Visual Basic Scripting Edition (VBScript), if you set the return value of this function to False, the close operation isn't completed and the inspector is left open.

If you use the Close method to fire this event, it can only be canceled if the Close method uses the olPromptForSave argument.

Note

In C#, there is no ContactItem.Close event, only Close.

Try the following code example instead: ItemEvents_10_Event appointmentItemEvent = (ItemEvents_10_Event)outlook_contact; appointmentItemEvent.Close += AppointmentItemEvent_Close;

See also

ContactItem Object

[!includeSupport and feedback]