Skip to main content
Tab

FileManagerSettingsToolbar.ShowPopOutImages Property

Gets or sets a value specifying whether pop-out images that indicate that a toolbar item has a submenu are displayed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean ShowPopOutImages { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

One of the enumeration values.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

Property Paths

You can access this nested property as listed below:

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

Remarks

The file manager displays a specific popup image to indicate whether a toolbar item contains a submenu. Use the ShowPopOutImages property to hide/display a popup image in the menu.

Concept

Example

Web Forms (in markup):

<dx:ASPxFileManager ID="FileManager" runat="server" />
    <SettingsToolbar ShowPopOutImages="true" />
</dx:ASPxFileManager>

Web Forms (in code):

ASPxFileManager fm = new ASPxFileManager();
...
fm.SettingsToolbar.ShowPopOutImages = true;

MVC:

@Html.DevExpress().FileManager( settings => {
    settings.Name = "fileManager";

    settings.SettingsToolbar.ShowPopOutImages = true;
    ...
}).BindToFolder(Model).GetHtml()

Online Demo

See Also