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

ASPxFileManager.SelectedFiles Property

Gets or sets a collection of files selected within the file manager.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public FileManagerFile[] SelectedFiles { get; set; }

Property Value

Type Description
FileManagerFile[]

A DevExpress.Web.FileManagerFile[] object that is the collection of selected files.

Remarks

Use the SelectedFiles property to get or set the collection of currently selected files within the ASPxFileManager when the FileManagerSettings.EnableMultiSelect property is set to true. You can customize the appearance of the selected files, using the file’s FileManagerFileStyle.SelectionActiveStyle and FileManagerFileStyle.SelectionInactiveStyle properties, or common for files and folders, the FileManagerItemStyle.SelectionActiveStyle and FileManagerItemStyle.SelectionInactiveStyle properties.

When the FileManagerSettings.EnableMultiSelect property is set to false, you can use the ASPxFileManager.SelectedFile property to get a selected file.

See Also