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

Raises the OnRowDeleting event.

[Visual Basic]
Overridable Protected Sub OnRowDeleting( _
   ByVal e As DataRowChangeEventArgs _
)
[C#]
protected virtual void OnRowDeleting(
   DataRowChangeEventArgs e
);
[C++]
protected: virtual void OnRowDeleting(
   DataRowChangeEventArgs* e
);
[JScript]
protected function OnRowDeleting(
   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 OnRowDeleting in a derived class, be sure to call the base class's OnRowDeleting method.

See Also

DataTable Class | DataTable Members | System.Data Namespace | AddOnRowDeleting | RemoveOnRowDeleting