Skip to main content
Tab

FileManagerSettingsToolbar.ShowCreateButton Property

OBSOLETE

To display the create button, add an object of the FileManagerToolbarCreateButton type to the SettingsToolbar.Items collection. If the collection is empty, the create button is displayed provided that the SettingsEditing.AllowCreate property is set to true.

Gets or sets a value that specifies whether the create button is displayed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
[Obsolete("To display the create button, add an object of the FileManagerToolbarCreateButton type to the SettingsToolbar.Items collection. If the collection is empty, the create button is displayed provided that the SettingsEditing.AllowCreate property is set to true.")]
public virtual bool ShowCreateButton { get; set; }

Property Value

Type Default Description
Boolean true

true, if the create button is visible, otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ShowCreateButton
ASP.NET MVC Extensions FileManagerSettings
.SettingsToolbar .ShowCreateButton
ASP.NET Web Forms Controls ASPxFileManager
.SettingsToolbar .ShowCreateButton
RichEditDocumentSelectorSettings
.ToolbarSettings .ShowCreateButton
SpreadsheetDocumentSelectorSettings
.ToolbarSettings .ShowCreateButton

Remarks

If folder creation is available (the FileManagerSettingsEditing.AllowCreate property is set to true), you can manage the visibility of the create button via the ShowCreateButton property.

The button’s image can be customized by using the FileManagerImages.CreateButton property.

See Also