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 metodo NewRow().
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
Origine dell'evento.
Oggetto DataTableNewRowEventArgs che contiene i dati dell'evento.
Commenti
Quando si crea un delegato DataTableNewRowEventHandler, si identifica il metodo che gestirà l'evento. Per associare l'evento al gestore eventi in uso, aggiungere all'evento un'istanza del delegato. 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
GetMethodInfo(Delegate) |
Ottiene un oggetto che rappresenta il metodo rappresentato dal delegato specificato. |