Class BeforeRemoveEventArgs
Provides information about the BeforeRemove event callback.
Inheritance
System.Object
BeforeRemoveEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeRemoveEventArgs : Object
Constructors
BeforeRemoveEventArgs()
Declaration
public BeforeRemoveEventArgs()
Properties
Cancel
Gets or sets whether the file removal action has been canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
CurrentRequest
Gets the XMLHttpRequest instance that is associated with the remove action.
Declaration
public object CurrentRequest { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Details of an XMLHttpRequest object. |
CustomFormData
Gets or sets the additional data with key and value pair format to be submitted to the remove action.
Declaration
public object CustomFormData { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Key and value pair object. |
FilesData
Gets the list of file details that will be removed.
Declaration
public List<FileInfo> FilesData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<FileInfo> |
PostRawFile
Gets or sets whether the selected raw file is sent to the server or not.
Declaration
public bool PostRawFile { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |