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

Adds an event handler for the OnRowDeleted event.

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

Parameters

handler
A DataRowChangeEventHandler delegate that represents the method that will handle the OnRowDeleted event.

See Also

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