Click to Rate and Give Feedback
MSDN
MSDN Library
Visual Studio 2005
Visual Studio
Tools and Features
 DrillthroughEventHandler Delegate
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0

Other versions are also available for the following:
 
DrillthroughEventHandler Delegate 

Represents the method that will handle the Drillthrough event of a ReportViewer.

Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in microsoft.reportviewer.winforms.dll)

Visual Basic (Declaration)
Public Delegate Sub DrillthroughEventHandler ( _
	sender As Object, _
	e As DrillthroughEventArgs _
)
Visual Basic (Usage)
Dim instance As New DrillthroughEventHandler(AddressOf HandlerMethod)
C#
public delegate void DrillthroughEventHandler (
	Object sender,
	DrillthroughEventArgs e
)
C++
public delegate void DrillthroughEventHandler (
	Object^ sender, 
	DrillthroughEventArgs^ e
)
J#
/** @delegate */
public delegate void DrillthroughEventHandler (
	Object sender, 
	DrillthroughEventArgs e
)
JScript
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

sender

The object that raised the event.

e

A DrillthroughEventArgs object that contains the event data.

You must supply a data source for any drillthrough reports that are referenced by the main report. To do this, you must supply an event handler for the drillthrough event.

For more information about handling events, see Consuming Events.

Please see the Drillthrough method of the ReportViewer class for an example.

© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker