DataGridViewRowEventArgs.Row Propiedad

Definición

Obtiene el DataGridViewRow asociado al evento.

public:
 property System::Windows::Forms::DataGridViewRow ^ Row { System::Windows::Forms::DataGridViewRow ^ get(); };
public System.Windows.Forms.DataGridViewRow Row { get; }
member this.Row : System.Windows.Forms.DataGridViewRow
Public ReadOnly Property Row As DataGridViewRow

Valor de propiedad

Objeto DataGridViewRow asociado al evento.

Ejemplos

En el ejemplo de código siguiente se muestra el uso de este tipo.

private void dataGridView1_DefaultValuesNeeded(object sender,
    System.Windows.Forms.DataGridViewRowEventArgs e)
{
    e.Row.Cells["Region"].Value = "WA";
    e.Row.Cells["City"].Value = "Redmond";
    e.Row.Cells["PostalCode"].Value = "98052-6399";
    e.Row.Cells["Country"].Value = "USA";
    e.Row.Cells["CustomerID"].Value = NewCustomerId();
}
Private Sub dataGridView1_DefaultValuesNeeded(ByVal sender As Object, _
    ByVal e As System.Windows.Forms.DataGridViewRowEventArgs) _
    Handles dataGridView1.DefaultValuesNeeded

    With e.Row
        .Cells("Region").Value = "WA"
        .Cells("City").Value = "Redmond"
        .Cells("PostalCode").Value = "98052-6399"
        .Cells("Country").Value = "USA"
        .Cells("CustomerID").Value = NewCustomerId()
    End With

End Sub

Se aplica a

Consulte también