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

ASPxFileManager.SelectedFileOpened Event

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.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public event FileManagerFileOpenedEventHandler SelectedFileOpened

Event Data

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.

Remarks

Write a SelectedFileOpened event handler to perform specific actions on the server side, each time an end-user is going to open a file using any of the following: methods:

  • double-clicking a file;
  • pressing the Enter key when a file is selected.

You can use the event parameter’s property FileManagerFileOpenedEventArgs.File to identify the opened file.

See Also