Class BeforeBatchAddArgs<T>
Defines the event argument of before batch add action.
Implements
System.IEquatable<BeforeBatchAddArgs<T>>
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeBatchAddArgs<T> : GridEventBaseArgs, IEquatable<BeforeBatchAddArgs<T>>
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component |
Constructors
BeforeBatchAddArgs()
Declaration
public BeforeBatchAddArgs()
Properties
Cancel
Defines the cancel option value.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
DefaultData
Defines the default data object.
Declaration
public T DefaultData { get; set; }
Property Value
Type | Description |
---|---|
T |
EditContext
Defines the current EditContext
instance.
Declaration
public EditContext EditContext { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Forms.EditContext |
Index
Defines the index to add.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PrimaryKey
Defines the primaryKey.
Declaration
public string[] PrimaryKey { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
Methods
Equals(BeforeBatchAddArgs<T>)
Declaration
public bool Equals(BeforeBatchAddArgs<T> beforeBatchAddArgs)
Parameters
Type | Name | Description |
---|---|---|
BeforeBatchAddArgs<T> | beforeBatchAddArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>