Class ItemsUploadedEventArgs<TValue>
Provides information about the ItemsUploaded event callback.
Inheritance
Namespace: Syncfusion.Blazor.FileManager
Assembly: Syncfusion.Blazor.dll
Syntax
public class ItemsUploadedEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | Specifies the TValue of FileManager events. |
Constructors
ItemsUploadedEventArgs()
Declaration
public ItemsUploadedEventArgs()
Properties
AutoDialogClose
Gets or sets a value whether the upload file dialog will be closed automatically or not after the upload action gets completed.
Declaration
public bool AutoDialogClose { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the upload dialog will be closed automatically; otherwise, false. The default value is false. |
Files
Gets the list of the uploaded files or folders details from the SfFileManager<TValue> component.
Declaration
public List<UploadFiles> Files { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<UploadFiles> | List of uploaded files or folders. |
Remarks
User can retrieve the uploaded files or folders details from the SfFileManager<TValue> component.
IsSelected
Gets or sets a value indicating whether the uploaded file can be selected after the upload action will be completed successfully and rendered within the FileManager component.
Declaration
public bool IsSelected { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Path
Gets the path in which the upload operation is performed.
Declaration
public string Path { get; }
Property Value
Type | Description |
---|---|
System.String | Represents the relative or absolute path of the directory. |
Remarks
Users can retrieve the path of the upload operation here.