Class BeforeRemoveEventArgs
Defines the argument for the BeforeRemove event.
Inheritance
System.Object
BeforeRemoveEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeRemoveEventArgs : Object
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 |
FilesData
Returns the list of files details that will be removed.
Declaration
public List<FileInfo> FilesData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<FileInfo> |
PostRawFile
Defines whether the selected raw file send to server remove action. Set true to send raw file. Set false to send file name only.
Declaration
public bool PostRawFile { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |