WorkbookEvents_BeforeSaveEventHandler 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 BeforeSave event. The BeforeSave event occurs before the workbook is saved.
public delegate void WorkbookEvents_BeforeSaveEventHandler(bool SaveAsUI, [Runtime::InteropServices::Out] bool % Cancel);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void WorkbookEvents_BeforeSaveEventHandler(bool SaveAsUI, out bool Cancel);
Public Delegate Sub WorkbookEvents_BeforeSaveEventHandler(SaveAsUI As Boolean, ByRef Cancel As Boolean)
Parameters
- SaveAsUI
- Boolean
True if the Save As dialog box will be displayed.
- Cancel
- Boolean
False when the event occurs. If the event procedure sets this argument to True, the workbook isn't saved when the procedure is finished.
- Attributes