WorkbookEvents_AfterSaveEventHandler Delegate

A Delegate type used to add an event handler for the AfterSave event. The AfterSave event occurs after the workbook is saved.

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

Syntax

'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub WorkbookEvents_AfterSaveEventHandler ( _
    Success As Boolean _
)
'Usage
Dim instance As New WorkbookEvents_AfterSaveEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void WorkbookEvents_AfterSaveEventHandler(
    bool Success
)

Parameters

  • Success
    Type: System.Boolean

    true if the save operation was successful; otherwise, false.

See Also

Reference

Microsoft.Office.Interop.Excel Namespace