コード例 #1
0
 /// <summary>
 /// Fire event after a data row has been bound
 /// </summary>
 /// <param name="ea">DataRowBoundEventArgs</param>
 public void FireEventDataRowBoundEventArgs(DataRowBoundEventArgs ea)
 {
     if (DataRowBound != null)
     {
         DataRowBound(this, ea);
     }
 }
コード例 #2
0
ファイル: ReportDocument.cs プロジェクト: xbadcode/Rubezh
		/// <summary>
		/// Fire event after a data row has been bound
		/// </summary>
		/// <param name="ea">DataRowBoundEventArgs</param>
		public void FireEventDataRowBoundEventArgs(DataRowBoundEventArgs ea)
		{
			if (DataRowBound != null)
				DataRowBound(this, ea);
		}