'Declaration
Public Event RowUpdating As MimerRowUpdatingEventHandler
public event MimerRowUpdatingEventHandler RowUpdating
public event RowUpdating: MimerRowUpdatingEventHandler;
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event MimerRowUpdatingEventHandler* RowUpdating
Event Data
The event handler receives an argument of type MimerRowUpdatingEventArgs containing data related to this event. The following MimerRowUpdatingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Command | Return the MimerCommand object for the current MimerRowUpdatingEventArgs. |
Errors | (Inherited from System.Data.Common.RowUpdatingEventArgs) |
Row | (Inherited from ) |
StatementType | (Inherited from ) |
Status | (Inherited from ) |
TableMapping | (Inherited from ) |
Requirements
.NET Framework
Version 2.0 or later
See Also