ApplicationEvents4_DocumentBeforeSaveEventHandler Delegate

Definition

A Delegate type used to add an event handler for the DocumentBeforeSave event. The DocumentBeforeSave event occurs before any open document is saved.

public delegate void ApplicationEvents4_DocumentBeforeSaveEventHandler(Document ^ Doc, bool % SaveAsUI, [Runtime::InteropServices::Out] bool % Cancel);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void ApplicationEvents4_DocumentBeforeSaveEventHandler(Document Doc, ref bool SaveAsUI, out bool Cancel);
type ApplicationEvents4_DocumentBeforeSaveEventHandler = delegate of Document * bool * bool -> unit
Public Delegate Sub ApplicationEvents4_DocumentBeforeSaveEventHandler(Doc As Document, ByRef SaveAsUI As Boolean, ByRef Cancel As Boolean)

Parameters

Doc
Document

The document that's being saved.

SaveAsUI
Boolean

True to display the Save As dialog box.

Cancel
Boolean

False when the event occurs. If the event procedure sets this argument to True, the document isn't saved when the procedure is finished.

Attributes

Applies to