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

Removes an event handler for the row changed event. Occurs after a row in the table has been successfully edited.

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

Parameters

handler
handler to remove for this event

See Also

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