Class BeforeBatchSaveArgs<T>
Defines the event argument of before batch save action.
Implements
System.IEquatable<BeforeBatchSaveArgs<T>>
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeBatchSaveArgs<T> : GridEventBaseArgs, IEquatable<BeforeBatchSaveArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
BeforeBatchSaveArgs()
Declaration
public BeforeBatchSaveArgs()
Properties
BatchChanges
Defines the changed record object.
Declaration
public BatchChanges<T> BatchChanges { get; set; }
Property Value
Type | Description |
---|---|
BatchChanges<T> |
Cancel
Defines the cancel option value.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
Equals(BeforeBatchSaveArgs<T>)
Declaration
public bool Equals(BeforeBatchSaveArgs<T> beforeBatchSaveArgs)
Parameters
Type | Name | Description |
---|---|---|
BeforeBatchSaveArgs<T> | beforeBatchSaveArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>