FileManagerSettingsToolbar.Visible Property
Specifies the visibility of the toolbar element.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Property Paths
You can access this nested property as listed below:
Library | Object Type | Path to Visible |
---|---|---|
ASP.NET MVC Extensions | FileManagerSettings |
|
ASP.NET Web Forms Controls | ASPxFileManager |
|
RichEditDocumentSelectorSettings |
|
|
SpreadsheetDocumentSelectorSettings |
|
Remarks
Concept
Example
Web Forms (in markup):
<dx:ASPxFileManager ID="FileManager" runat="server" />
<SettingsToolbar Visible="false" />
</dx:ASPxFileManager>
Web Forms (in code):
ASPxFileManager fm = new ASPxFileManager();
...
fm.SettingsToolbar.Visible = false;
MVC:
@Html.DevExpress().FileManager( settings => {
settings.Name = "fileManager";
settings.SettingsToolbar.Visible = false;
...
}).BindToFolder(Model).GetHtml()
Online Demo
See Also