Class FileSelectEventArgs
Arguments for the select event.
Inheritance
System.Object
FileSelectEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class FileSelectEventArgs : Object, ICancellableEventArgs
Constructors
FileSelectEventArgs()
Declaration
public FileSelectEventArgs()
Properties
Files
The files that are used for the event.
Declaration
public List<FileSelectFileInfo> Files { get; set; }
Property Value
System.Collections.Generic.List<FileSelectFileInfo>
|
IsCancelled
Specifies if the event should be canceled.
Declaration
public bool IsCancelled { get; set; }
Property Value
System.Boolean
|