ReportViewer for ASP.NET Web Forms
InitializeParametersDialog イベント
使用例 

C1.C1Report.4 アセンブリ > C1.C1Report 名前空間 > C1Report クラス : InitializeParametersDialog イベント
コントロールがレポートパラメータの入力ダイアログを表示する前に発生します。
シンタックス
'宣言
 
Public Event InitializeParametersDialog As DialogEventHandler
public event DialogEventHandler InitializeParametersDialog
解説

DataSource.RecordSource プロパティに PARAMETERS 節を含むレポートは、ユーザーがレポートパラメータを入力するためのダイアログを表示します。

このイベントは、このダイアログが表示される前に発生するため、キャプション、フォント、色などを変更してダイアログをカスタマイズできます。

使用例
The code below uses the InitializeParametersDialog event to modify the values of the report parameters and suppress the display of the parameter dialog.
private void c1Report1_InitializeParametersDialog(object sender, 
         C1.C1Report.DialogEventArgs e)
{
  // パラメータ値を変更する
  ReportParameterCollection p = e.Parameters;
  p["TheString"].Value = "east";
  p["TheNumber"].Value = 12;
  p["TheDate"].Value   = DateTime.Now;
  p["TheBool"].Value   = true;
  
  // ダイアログを表示しない
  e.ShowDialog = false;
}
参照

C1Report クラス
C1Report メンバ