BackEventHandler デリゲート

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

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

構文

'宣言
Public Delegate Sub BackEventHandler ( _
    sender As Object, _
    e As BackEventArgs _
)
'使用
Dim instance As New BackEventHandler(AddressOf HandlerMethod)
public delegate void BackEventHandler (
    Object sender,
    BackEventArgs e
)
public delegate void BackEventHandler (
    Object^ sender, 
    BackEventArgs^ e
)
/** @delegate */
public delegate void BackEventHandler (
    Object sender, 
    BackEventArgs e
)
JScript supports the use of delegates, but not the declaration of new ones.

パラメータ

  • sender
    イベントを発生させたオブジェクト。
  • e
    イベントの引数を示す BackEventArgs オブジェクト。

解説

Back イベントは、ユーザーがドリルスルー レポートを参照しているときに親レポートに戻るために [戻る] をクリックした場合に発生します。BackEventArgs オブジェクトは親レポートを含みます。

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

参照

リファレンス

Microsoft.Reporting.WinForms 名前空間