ASPxFileManager.FilesUploaded Event
Occurs on the server side after upload of all selected files has been completed.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Event Data
The FilesUploaded event's data class is FileManagerFilesUploadedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Files | Gets files related to the event. |
Remarks
The FilesUploaded event serves as a notification that all selected files have been uploaded. You can use the FileManagerFilesUploadedEventArgs.Files event argument property to get an array of uploaded files.
To specify if a file can be uploaded and cancel the action, handle the ASPxFileManager.FileUploading event.
See Also