ASPxFileManager.SettingsEditing Property
Provides access to the ASPxFileManager‘s editing settings.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Description |
---|---|
FileManagerSettingsEditing | A FileManagerSettingsEditing object that contains the ASPxFileManager’s editing options. |
Remarks
In markup:
<dx:ASPxFileManager ID="fileManager" runat="server" >
<SettingsEditing AllowCreate="true" AllowDelete="true" AllowMove="true" AllowRename="true"
AllowCopy="true" AllowDownload="true" />
...
</dx:ASPxFileManager>
In code:
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