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

CreateRow() protected method

protected CreateRow ( int rowIndex, int dataSourceIndex, DataControlRowType rowType, DataControlRowState rowState ) : GridViewRow
rowIndex int
dataSourceIndex int
rowType DataControlRowType
rowState DataControlRowState
return GridViewRow
		protected virtual GridViewRow CreateRow (int rowIndex, int dataSourceIndex, DataControlRowType rowType, DataControlRowState rowState)
		{
			GridViewRow row = new GridViewRow (rowIndex, dataSourceIndex, rowType, rowState);
			return row;
		}