次の方法で共有


SubreportProcessingEventHandler デリゲート

ReportViewerSubreportProcessing イベントを処理するメソッドを表します。

名前空間:  Microsoft.Reporting.WebForms
アセンブリ:  Microsoft.ReportViewer.WebForms (Microsoft.ReportViewer.WebForms.dll)

構文

'宣言
Public Delegate Sub SubreportProcessingEventHandler ( _
    sender As Object, _
    e As SubreportProcessingEventArgs _
)
'使用
Dim instance As New SubreportProcessingEventHandler(AddressOf HandlerMethod)
public delegate void SubreportProcessingEventHandler(
    Object sender,
    SubreportProcessingEventArgs e
)
public delegate void SubreportProcessingEventHandler(
    Object^ sender, 
    SubreportProcessingEventArgs^ e
)
type SubreportProcessingEventHandler = 
    delegate of 
        sender:Object * 
        e:SubreportProcessingEventArgs -> unit
JScript では、デリゲートは使用できますが、新規に宣言することはできません。

パラメーター

  • sender
    型: System.Object
    イベントを発生させたオブジェクト。

説明

サブレポートで使用するデータ ソースにデータを指定する必要があります。それには、サブレポート処理イベントのイベント ハンドラーを指定してください。

イベント処理の詳細については、「Consuming Events」を参照してください。

使用例

例として、LocalReport クラスの SubreportProcessing メソッドを参照してください。

関連項目

参照

Microsoft.Reporting.WebForms 名前空間