DataRowChangeEventArgs Classe

Definição

public ref class DataRowChangeEventArgs : EventArgs
public class DataRowChangeEventArgs : EventArgs
type DataRowChangeEventArgs = class
    inherit EventArgs
Public Class DataRowChangeEventArgs
Inherits EventArgs
Herança
DataRowChangeEventArgs

Exemplos

O exemplo a seguir adiciona um DataRowChangeEventHandler e o procedimento para manipular o evento quando uma linha é alterada.


Private dataTable As DataTable

Private Sub [AddHandler]()
   dataTable = CType(DataGrid1.DataSource, DataTable)
   AddHandler dataTable.RowChanged, AddressOf Me.dataTable_Changed
End Sub

Private Sub dataTable_Changed _
(ByVal sender As System.Object, ByVal e As System.Data.DataRowChangeEventArgs)
   Console.WriteLine("Row Changed", e.Action, e.Row.Item(DataGrid1.CurrentCell.ColumnNumber))
End Sub

Comentários

Os RowChangedeventos , RowChanging, OnRowDeletede OnRowDeleting ocorrem quando uma ação é executada em um DataRow.

Construtores

DataRowChangeEventArgs(DataRow, DataRowAction)

Inicializa uma nova instância da classe DataRowChangeEventArgs.

Propriedades

Action

Obtém a ação que ocorreu em uma DataRow.

Row

Obtém a linha em que uma ação ocorreu.

Métodos

Equals(Object)

Determina se o objeto especificado é igual ao objeto atual.

(Herdado de Object)
GetHashCode()

Serve como a função de hash padrão.

(Herdado de Object)
GetType()

Obtém o Type da instância atual.

(Herdado de Object)
MemberwiseClone()

Cria uma cópia superficial do Object atual.

(Herdado de Object)
ToString()

Retorna uma cadeia de caracteres que representa o objeto atual.

(Herdado de Object)

Aplica-se a

Confira também