Skip to main content

FileManagerToolbarBuilder.Items(IEnumerable<FileManagerToolbarItem>) Method

Configures toolbar items' settings. Mirrors the client-side items option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public FileManagerToolbarBuilder Items(
    IEnumerable<FileManagerToolbarItem> value
)

Parameters

Name Type Description
value IEnumerable<FileManagerToolbarItem>

The option value.

Returns

Type Description
FileManagerToolbarBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().FileManager()
    .Toolbar(toolbar => toolbar
        .Items(new[] { FileManagerToolbarItem.Clear })
    )
)
See Also