Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
53 lines (27 loc) · 2.05 KB

documents-querycanceldocumentclose-event-visio.md

File metadata and controls

53 lines (27 loc) · 2.05 KB
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
Documents.QueryCancelDocumentClose Event (Visio)
vis_sdr.chm10619295
vis_sdr.chm10619295
visio
Visio.Documents.QueryCancelDocumentClose
4627e0d7-82fd-5ab1-146b-adb77bab3bea
06/08/2017

Documents.QueryCancelDocumentClose Event (Visio)

Occurs before the application closes a document in response to a user action in the interface. If any event handler returns True , the operation is canceled.

Syntax

Private Sub expression _QueryCancelDocumentClose( ByVal doc As [IVDOCUMENT] )

expression A variable that represents a Documents object.

Parameters

Name Required/Optional Data Type Description
doc Required [IVDOCUMENT] The document that is going to be closed.

Remarks

A Microsoft Visio instance fires QueryCancelDocumentClose after the user has directed the instance to close a document.

  • If any event handler returns True (cancel), the instance fires DocumentCloseCanceled and does not close the document.

  • If all handlers return False (don't cancel), the instance fires BeforeDocumentClose and then closes the document.

While a Visio instance is firing a query or cancel event, it responds to inquiries from client code but refuses to perform operations. Client code can show forms or message boxes while responding to a query or cancel event.

If you're using Microsoft Visual Basic or Visual Basic for Applications (VBA), the syntax in this topic describes a common, efficient way to handle events.

If you want to create your own Event objects, use the Add or AddAdvise method. To create an Event object that runs an add-on, use the Add method as it applies to the EventList collection. To create an Event object that receives notification, use the AddAdvise method. To find an event code for the event you want to create, seeEvent codes.