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

Removes an event handler for the row changing event. Occurs when a row in the table has proposed edits. The user can modify values in the row and should throw an exception to cancel the edit.

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

Parameters

handler
handler to remove for this event

See Also

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