Skip to main content
A newer version of this page is available.
All docs
V18.2
Tab

FileManagerToolbarItemBase.CommandName Property

Gets or sets the name of the command executed when clicking a toolbar item item.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue("")]
public virtual string CommandName { get; set; }

Property Value

Type Default Description
String String.Empty

A String value that specifies the item command name.

Remarks

Use the CommandName property to specify a command that will be executed when a toolbar item item is clicked.

A command’s name can be used on the client side when handling the ASPxClientFileManager.CustomCommand event.

A toolbar item can be obtained by its CommandName property by using the FileManagerToolbarItemCollection.FindByCommandName method.

See Also