Skip to main content
A newer version of this page is available. .
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.v19.2.dll

Declaration

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

Property Value

Type Default Description
DefaultBoolean **Default**

One of the DefaultBoolean enumeration values.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

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

WebForms (declaratively):

<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