Class BeforeRemoveEventArgs
Inheritance
System.Object
BeforeRemoveEventArgs
Implements
System.IEquatable<BeforeRemoveEventArgs>
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeRemoveEventArgs : Object, IEquatable<BeforeRemoveEventArgs>
Constructors
BeforeRemoveEventArgs()
Declaration
public BeforeRemoveEventArgs()
Properties
Cancel
Defines whether the current action can be prevented.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CurrentRequest
Returns the XMLHttpRequest instance that is associated with remove action.
Declaration
public object CurrentRequest { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
CustomFormData
Defines the additional data with key and value pair format that will be submitted to the remove action.
Declaration
public object CustomFormData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
Equals(BeforeRemoveEventArgs)
Declaration
public bool Equals(BeforeRemoveEventArgs beforeRemoveEventArgs)
Parameters
Type | Name | Description |
---|---|---|
BeforeRemoveEventArgs | beforeRemoveEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>