次の方法で共有


SubreportProcessingEventHandler デリゲート

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

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

構文

'宣言
Public Delegate Sub SubreportProcessingEventHandler ( _
    sender As Object, _
    e As SubreportProcessingEventArgs _
)
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
    型 : Object
    イベントを発生させたオブジェクト。

解説

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

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

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

参照

関連項目

Microsoft.Reporting.WinForms 名前空間