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

Raises the OnRowDeleted event.

[Visual Basic]
Overridable Protected Sub OnRowDeleted( _
   ByVal e As DataRowChangeEventArgs _
)
[C#]
protected virtual void OnRowDeleted(
   DataRowChangeEventArgs e
);
[C++]
protected: virtual void OnRowDeleted(
   DataRowChangeEventArgs* e
);
[JScript]
protected function OnRowDeleted(
   e : DataRowChangeEventArgs
);

Parameters

e
A DataRowChangeEventArgs that contains the event data.

Remarks

Raising an event invokes the event-handling method through a delegate. For an overview, see TBD.

Notes to Inheritors: When overriding OnRowDeleted in a derived class, be sure to call the base class's OnRowDeleted method.

See Also

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