ApplicationEvents4_DocumentBeforeSaveEventHandler Delegate

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

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub ApplicationEvents4_DocumentBeforeSaveEventHandler ( _
    Doc As Document, _
    ByRef SaveAsUI As Boolean, _
    <OutAttribute> ByRef Cancel As Boolean _
)
'Usage
Dim instance As New ApplicationEvents4_DocumentBeforeSaveEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void ApplicationEvents4_DocumentBeforeSaveEventHandler(
    Document Doc,
    ref bool SaveAsUI,
    out bool Cancel
)

Parameters

  • SaveAsUI
    Type: System.Boolean%
    True to display the Save As dialog box.
  • Cancel
    Type: System.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.

See Also

Reference

Microsoft.Office.Interop.Word Namespace