GridView.CreateRow Método

Definição

Cria uma linha no controle 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

O índice da linha a ser criada.

dataSourceIndex
Int32

O índice do item da fonte de dados a ser associado à linha.

rowType
DataControlRowType

Um dos valores de DataControlRowType.

rowState
DataControlRowState

Um dos valores de DataControlRowState.

Retornos

GridViewRow

Um GridViewRow criado usando os parâmetros especificados.

Comentários

O CreateRow método é usado para criar uma linha no GridView controle.

Observação

Esse método é usado principalmente por desenvolvedores de controle para estender o GridView controle. Um controle associado a GridView dados gera automaticamente as linhas necessárias para exibir os dados de destino.

Aplica-se a

Confira também