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