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

C1.C1Report.4 アセンブリ > C1.C1Report 名前空間 > C1Report クラス : NoData イベント
Fired when the control starts rendering a report and the data source is empty.
シンタックス
'宣言
 
Public Event NoData As System.EventHandler
public event System.EventHandler NoData
解説

You can use this event to cancel rendering a report when the source recordset is empty.

If you don't cancel the report, it will be rendered as an unbound report (a self-contained report with no underlying data).

使用例
The code below cancels a report when it has no data:
private void c1r_NoData(object sender, EventArgs e)
{
    _c1r.Cancel = true;
}
参照

C1Report クラス
C1Report メンバ