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