Class SelectedEventArgs
Inheritance
System.Object
SelectedEventArgs
Implements
System.IEquatable<SelectedEventArgs>
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectedEventArgs : Object, IEquatable<SelectedEventArgs>
Constructors
SelectedEventArgs()
Declaration
public SelectedEventArgs()
Properties
Cancel
Defines whether the current action can be prevented.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CurrentRequest
Set the current request header to the XMLHttpRequest instance.
Declaration
public object CurrentRequest { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
CustomFormData
Defines the additional data in key and value pair format that will be submitted to the upload action.
Declaration
public object CustomFormData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Event
Returns the original event arguments.
Declaration
public object Event { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
FilesData
Returns the list of selected files.
Declaration
public List<FileInfo> FilesData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<FileInfo> |
IsCanceled
Specifies whether the file selection has been canceled
Declaration
public bool IsCanceled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsModified
Determines whether the file list generates based on the modified data.
Declaration
public bool IsModified { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ModifiedFilesData
Specifies the modified files data to generate the file items. The argument depends on isModified
argument.
Declaration
public List<FileInfo> ModifiedFilesData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<FileInfo> |
ProgressInterval
Specifies the step value to the progress bar.
Declaration
public string ProgressInterval { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(SelectedEventArgs)
Declaration
public bool Equals(SelectedEventArgs selectedEventArgs)
Parameters
Type | Name | Description |
---|---|---|
SelectedEventArgs | selectedEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>