WorkbookEvents_SheetChangeEventHandler 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 SheetChange event. The SheetChange event occurs when cells in any worksheet are changed by the user or by an external link.
public delegate void WorkbookEvents_SheetChangeEventHandler(System::Object ^ Sh, Range ^ Target);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void WorkbookEvents_SheetChangeEventHandler(object Sh, Range Target);
Public Delegate Sub WorkbookEvents_SheetChangeEventHandler(Sh As Object, Target As Range)
Parameters
- Sh
- Object
A Worksheet object that represents the sheet.
- Target
- Range
The changed range.
- Attributes