SubreportProcessingEventHandler デリゲート

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

名前空間: Microsoft.Reporting.WinForms
アセンブリ: Microsoft.ReportViewer.WinForms (microsoft.reportviewer.winforms.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
)
/** @delegate */
public delegate void SubreportProcessingEventHandler (
    Object sender, 
    SubreportProcessingEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.

パラメータ

  • sender
    イベントを発生させたオブジェクト。

解説

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

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

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

参照

リファレンス

Microsoft.Reporting.WinForms 名前空間