Class SelectedEventArgs
Provides information about the FileSelected event callback.
Inheritance
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectedEventArgs : Object
Constructors
SelectedEventArgs()
Declaration
public SelectedEventArgs()
Properties
Cancel
Gets or sets whether the file selection action has been canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
CurrentRequest
Gets the current request header to the XMLHttpRequest instance.
Declaration
public object CurrentRequest { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Details of an XMLHttpRequest object. |
CustomFormData
Gets or sets the additional data in key and value pair format to be submitted to the upload action.
Declaration
public object CustomFormData { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Key and value pair object. |
Event
Gets the original event arguments.
Declaration
public object Event { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The original event arguments for the current event. |
FilesData
Gets the list of files selected for uploading.
Declaration
public List<FileInfo> FilesData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<FileInfo> | System.Collections.Generic.List<> |
IsCanceled
Gets or sets whether the file selection has been canceled or not.
Declaration
public bool IsCanceled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
IsModified
Get or set whether the selected files list is generated based on the modified data.
Declaration
public bool IsModified { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
ModifiedFilesData
Gets the modified file data to generate the file items. The argument depends on the IsModified argument.
Declaration
public List<FileInfo> ModifiedFilesData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<FileInfo> | System.Collections.Generic.List<> |
ProgressInterval
Gets or sets the step value to the progress bar.
Declaration
public string ProgressInterval { get; set; }
Property Value
Type | Description |
---|---|
System.String | System.String |
Type
Gets the original event argument type.
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |