aspnet-devexpress-dot-web-dot-aspxfilemanager-37011c41.md
Fires on the server side when an end-user opens a file by double-clicking it or pressing the Enter key.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public event FileManagerFileOpenedEventHandler SelectedFileOpened
Public Event SelectedFileOpened As FileManagerFileOpenedEventHandler
The SelectedFileOpened event's data class is FileManagerFileOpenedEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| File | Gets a file related to the event. |
Write a SelectedFileOpened event handler to perform specific actions on the server side, each time a user is going to open a file using any of the following methods:
You can use the event parameter’s property FileManagerFileOpenedEventArgs.File to identify the opened file.
See Also