Class EndEditEventArgs
Provides information for the OnEndEdit event.
Inheritance
System.Object
EndEditEventArgs
Namespace: Syncfusion.Blazor.InPlaceEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class EndEditEventArgs : Object
Remarks
This event is triggered when the editor is about to close.
Constructors
EndEditEventArgs()
Declaration
public EndEditEventArgs()
Properties
Action
Gets or sets the name of the action that caused the edit to end.
Declaration
public string Action { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | A string that indicates the action, such as "Submit" or "Cancel". |
Remarks
This helps in identifying how the edit mode was concluded.
Cancel
Gets or sets a value indicating whether to cancel the action of ending the edit.
Declaration
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
Remarks
Set this property to true to keep the component in edit mode.
Mode
Gets or sets the editor mode for the component.
Declaration
public RenderMode Mode { get; set; }
Property Value
| Type | Description |
|---|---|
| RenderMode | A RenderMode value that specifies how the editor is rendered. |
Remarks
This property indicates whether the editor is rendered inline or as a popup.