Back to Devexpress

ASPxFileManager.SettingsEditing Property

aspnet-devexpress-dot-web-dot-aspxfilemanager-a321f65b.md

latest2.3 KB
Original Source

ASPxFileManager.SettingsEditing Property

Provides access to the ASPxFileManager‘s editing settings.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public FileManagerSettingsEditing SettingsEditing { get; }
vb
Public ReadOnly Property SettingsEditing As FileManagerSettingsEditing

Property Value

TypeDescription
FileManagerSettingsEditing

A FileManagerSettingsEditing object that contains the ASPxFileManager’s editing options.

|

Remarks

In markup:

aspx
<dx:ASPxFileManager ID="fileManager" runat="server" >
    <SettingsEditing AllowCreate="true" AllowDelete="true" AllowMove="true" AllowRename="true" 
    AllowCopy="true" AllowDownload="true" />    
    ...
</dx:ASPxFileManager>

In code:

csharp
ASPxFileManager fm = new ASPxFileManager();
...
fm.SettingsEditing.AllowCreate = true;
fm.SettingsEditing.AllowDelete = true;
fm.SettingsEditing.AllowMove = true;
fm.SettingsEditing.AllowRename = true;
fm.SettingsEditing.AllowCopy = true;
fm.SettingsEditing.AllowDownload = true;

Online Demo

See Also

Settings

SettingsFolders

SettingsToolbar

SettingsUpload

File Manager

ASPxFileManager Class

ASPxFileManager Members

DevExpress.Web Namespace