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

C1.C1Report.4 アセンブリ > C1.C1Report 名前空間 > C1Report クラス : InitializeParametersDialog イベント
Fired before the control displays the Report Parameters dialog.
シンタックス
'宣言
 
Public Event InitializeParametersDialog As DialogEventHandler
public event DialogEventHandler InitializeParametersDialog
解説

Reports that have a PARAMETERS clause in their RecordSource property show a dialog where the user can enter report parameters.

This event fires before the dialog is displayed and allows you to customize the dialog by changing its caption, font, colors, etc.

You can also use this event to inspect and modify parameter values using the DialogEventArgs.Parameters collection.

Finally, you can use the DialogEventArgs.ShowDialog property to prevent the component from showing the parameters dialog.

使用例
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.C1Preview.C1Report.DialogEventArgs e)
{
  // change parameter values
  ReportParameterCollection p = e.Parameters;
  p["TheString"].Value = "east";
  p["TheNumber"].Value = 12;
  p["TheDate"].Value   = DateTime.Now;
  p["TheBool"].Value   = true;
  
  // don't show dialog
  e.ShowDialog = false;
}
参照

C1Report クラス
C1Report メンバ