Skip to main content
A newer version of this page is available. .

FileManagerSettings.FilesUploaded Property

Allows you to perform custom actions after upload of all selected files has been completed.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public FileManagerFilesUploadedEventHandler FilesUploaded { get; set; }

Property Value

Type Description
FileManagerFilesUploadedEventHandler

A FileManagerFilesUploadedEventHandler delegate method allowing you to implement custom processing.

Remarks

Implement a FileManagerFilesUploadedEventHandler delegate method and assign it to the FilesUploaded property to perform custom actions after upload of all selected files has been completed. The delegate method parameter’s FileManagerFilesUploadedEventArgs.Files property gets an array of uploaded files.

To specify if a file can be uploaded and cancel the action, use the FileManagerSettings.FileUploading property.

See Also