DrillthroughEventHandler 委派
代表將處理 ReportViewer 之 Drillthrough 事件的方法。
命名空間: Microsoft.Reporting.WebForms
組件: Microsoft.ReportViewer.WebForms (在 microsoft.reportviewer.webforms.dll)
語法
'宣告
Public Delegate Sub DrillthroughEventHandler ( _
sender As Object, _
e As DrillthroughEventArgs _
)
'用途
Dim instance As New DrillthroughEventHandler(AddressOf HandlerMethod)
public delegate void DrillthroughEventHandler (
Object sender,
DrillthroughEventArgs e
)
public delegate void DrillthroughEventHandler (
Object^ sender,
DrillthroughEventArgs^ e
)
/** @delegate */
public delegate void DrillthroughEventHandler (
Object sender,
DrillthroughEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.
參數
- sender
引發事件的物件。
- e
包含事件資料的 DrillthroughEventArgs 物件。
備註
您必須提供主報表所參考之任何鑽研報表的資料來源。若要這麼做,您必須提供鑽研事件的事件處理常式。
如需有關處理事件的詳細資訊,請參閱<Consuming Events>。
範例
請參閱 ReportViewer 類別的 Drillthrough 方法,以取得範例。