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.RemoveOnRowDeleted

Removes an event handler for the row deleting event. Occurs after a row in the table was deleted.

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

Parameters

handler
handler to remove for this event

See Also

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