AppEvents_WorkbookRowsetCompleteEventHandler 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 WorkbookRowsetComplete event. The WorkbookRowsetComplete event occurs when the user either drills through the recordset or invokes the rowset action on an OLAP PivotTable.
public delegate void AppEvents_WorkbookRowsetCompleteEventHandler(Workbook ^ Wb, System::String ^ Description, System::String ^ Sheet, bool Success);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void AppEvents_WorkbookRowsetCompleteEventHandler(Workbook Wb, string Description, string Sheet, bool Success);
Public Delegate Sub AppEvents_WorkbookRowsetCompleteEventHandler(Wb As Workbook, Description As String, Sheet As String, Success As Boolean)
Parameters
- Wb
- Workbook
The workbook for which the event occurs.
- Description
- String
A brief description of the event.
- Sheet
- String
The worksheet on which the recordset is created.
- Success
- Boolean
Contains a Boolean value to indicate success or failure.
- Attributes