DataTableNewRowEventHandler Delegato
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Rappresenta il metodo che gestisce il NewRow() metodo .
public delegate void DataTableNewRowEventHandler(System::Object ^ sender, DataTableNewRowEventArgs ^ e);
public delegate void DataTableNewRowEventHandler(object sender, DataTableNewRowEventArgs e);
type DataTableNewRowEventHandler = delegate of obj * DataTableNewRowEventArgs -> unit
Public Delegate Sub DataTableNewRowEventHandler(sender As Object, e As DataTableNewRowEventArgs)
Parametri
- sender
- Object
La fonte dell'evento.
Oggetto DataTableNewRowEventArgs contenente i dati dell'evento.
Commenti
Quando si crea un DataTableNewRowEventHandler delegato, si identifica il metodo che gestirà l'evento. Per associare l'evento al gestore eventi, aggiungere un'istanza del delegato all'evento. Il gestore eventi viene chiamato ogni volta che si verifica l'evento fino a quando non si rimuove il delegato. Per altre informazioni sui delegati, vedere Gestione e generazione di eventi.
Metodi di estensione
| Nome | Descrizione |
|---|---|
| GetMethodInfo(Delegate) |
Ottiene un oggetto che rappresenta il metodo rappresentato dal delegato specificato. |