System.Web.UI.WebControls.GridView.OnRowDataBound C# (CSharp) Method

OnRowDataBound() protected method

protected OnRowDataBound ( GridViewRowEventArgs e ) : void
e GridViewRowEventArgs
return void
		protected virtual void OnRowDataBound (GridViewRowEventArgs e)
		{
			if (Events != null) {
				GridViewRowEventHandler eh = (GridViewRowEventHandler) Events [RowDataBoundEvent];
				if (eh != null) eh (this, e);
			}
		}