Class RowUpdatingEventArgs<T>
Provides information about the RowUpdating event.
Inheritance
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowUpdatingEventArgs<T> : RowUpdatedEventArgs<T>
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component. |
Constructors
RowUpdatingEventArgs()
Declaration
public RowUpdatingEventArgs()
Properties
Cancel
Gets or sets a value indicating whether to cancel the saving action in the grid.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is |
IsShiftKeyPressed
Gets a Boolean value indicating whether the Shift key was pressed from the first edited cell to save the edited record in Normal edit mode.
Declaration
public bool IsShiftKeyPressed { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the SHIFT key is currently pressed; otherwise, |
KeyCode
Gets the string that identifies the physical key being pressed, while saving the edited record using Enter or Tab keys in Normal edit mode.
Declaration
public string KeyCode { get; }
Property Value
Type | Description |
---|---|
System.String |
|
Remarks
The value of this property is assigned while performing the save operation using Enter or Tab keys or a combination of the Shift+Tab keyboard keys.