NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DataTable.RemoveOnRowDeleting

Removes an event handler for the row deleting event. Occurs after a row in the table is about to be deleted.

[Visual Basic]
Public Sub RemoveOnRowDeleting( _
   ByVal handler As DataRowChangeEventHandler _
)
[C#]
public void RemoveOnRowDeleting(
   DataRowChangeEventHandler handler
);
[C++]
public: void RemoveOnRowDeleting(
   DataRowChangeEventHandler* handler
);
[JScript]
public function RemoveOnRowDeleting(
   handler : DataRowChangeEventHandler
);

Parameters

handler
handler to remove for this event

See Also

DataTable Class | DataTable Members | System.Data Namespace | AddOnRowDeleting