DwRowChangeEventArgs Class
.NET Standard 2.x
Represents an object which contains arguments used in the IDataStore.RowDeleting event and IDataStore.RowDeleted event.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Syntax
public class DwRowChangeEventArgs : EventArgs;
Constructors
| Name | Description |
|---|---|
| DwRowChangeEventArgs(int index, DwRowAction action) | Initializes a new instance of the DwRowChangeEventArgs class and specifies the index of the row changed and the type of the action. |
Properties
| Name | Return Type | Description |
|---|---|---|
| Action | DwRowAction | Gets the type of the action on the row. |
| Index | int | Gets the index of the row changed. |
| IsCancel | bool | Gets or sets whether to cancel the action on the row. |
| IsSuccess | bool | Gets or sets whether the row was changed successfully. |