GridView.CreateRow Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Crea una fila en el control GridView.
protected:
virtual System::Web::UI::WebControls::GridViewRow ^ CreateRow(int rowIndex, int dataSourceIndex, System::Web::UI::WebControls::DataControlRowType rowType, System::Web::UI::WebControls::DataControlRowState rowState);
protected virtual System.Web.UI.WebControls.GridViewRow CreateRow (int rowIndex, int dataSourceIndex, System.Web.UI.WebControls.DataControlRowType rowType, System.Web.UI.WebControls.DataControlRowState rowState);
abstract member CreateRow : int * int * System.Web.UI.WebControls.DataControlRowType * System.Web.UI.WebControls.DataControlRowState -> System.Web.UI.WebControls.GridViewRow
override this.CreateRow : int * int * System.Web.UI.WebControls.DataControlRowType * System.Web.UI.WebControls.DataControlRowState -> System.Web.UI.WebControls.GridViewRow
Protected Overridable Function CreateRow (rowIndex As Integer, dataSourceIndex As Integer, rowType As DataControlRowType, rowState As DataControlRowState) As GridViewRow
Parámetros
- rowIndex
- Int32
Índice de la fila que se va a crear.
- dataSourceIndex
- Int32
Índice del elemento de origen de datos que se enlazará a la fila.
- rowType
- DataControlRowType
Uno de los valores de DataControlRowType.
- rowState
- DataControlRowState
Uno de los valores de DataControlRowState.
Devoluciones
GridViewRow que se crea con los parámetros especificados.
Comentarios
El CreateRow método se usa para crear una fila en el GridView control .
Nota:
Este método se usa principalmente por los desarrolladores de controles para ampliar el GridView control. Un control enlazado a GridView datos genera automáticamente las filas necesarias para mostrar los datos de destino.