Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataTable.OnRowDeleting Method

Raises the RowDeleting event.

[Visual Basic]
Protected Overridable 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 handler through a delegate. For an overview, see Raising an Event.

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

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework

See Also

DataTable Class | DataTable Members | System.Data Namespace

Show:
© 2017 Microsoft