Skip to main content

ASPxClientFileManager.GetToolbarItemByCommandName(commandName) Method

Returns a toolbar item specified by its command name.

Declaration

GetToolbarItemByCommandName(
    commandName: string
): ASPxClientFileManagerToolbarItem

Parameters

Name Type Description
commandName string

A string value specifying the command name of the item.

Returns

Type Description
ASPxClientFileManagerToolbarItem

An ASPxClientFileManagerToolbarItem object that is the item with the specified command name.

Remarks

Use the GetToolbarItemByCommandName method to get a toolbar item object specified by its command name. An item’s command name is defined by the CommandName property.

This method searches for the specified item amongst all items contained in the FileManagerSettingsToolbar.Items collection. Note that if an invalid name is passed via the parameter, this method returns null.

Note

The GetToolbarItemByCommandName method can be used to get custom toolbar items only.

A public API for getting access to standard items in the context menu or on the toolbar is not provided. The standard items are created by ASPxFileManager, and if you change them, you can change the logic of the ASPxFileManager functionality.

See Also