AppEvents_WorkbookAfterSaveEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A Delegate type used to add an event handler for the WorkbookAfterSave event. The WorkbookAfterSave event occurs after the workbook is saved.
public delegate void AppEvents_WorkbookAfterSaveEventHandler(Workbook ^ Wb, bool Success);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void AppEvents_WorkbookAfterSaveEventHandler(Workbook Wb, bool Success);
Public Delegate Sub AppEvents_WorkbookAfterSaveEventHandler(Wb As Workbook, Success As Boolean)
Parameters
- Wb
- Workbook
The workbook being saved.
- Success
- Boolean
Returns true if the save operation was successful; otherwise false.
- Attributes