Class ActionBeginEventArgs<TValue>
Provides information about the ActionBegin event.
Inheritance
System.Object
ActionBeginEventArgs<TValue>
Namespace: Syncfusion.Blazor.InPlaceEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionBeginEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | Represents the Inplace Editor data source's type. |
Constructors
ActionBeginEventArgs()
Declaration
public ActionBeginEventArgs()
Properties
Cancel
Prevents the submit action from continuing.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Data
Provides information about the event, such as edited value and primary key.
Declaration
public InPlaceEditorRequestData<TValue> Data { get; set; }
Property Value
Type | Description |
---|---|
InPlaceEditorRequestData<TValue> | An InPlaceEditorRequestData<TValue> object that contains information about the event, such as the edited value and primary key. |