ASPxClientHtmlEditor.GetToolbarByName(name) Method
In This Article
Returns a toolbar specified by its name.
#Declaration
TypeScript
GetToolbarByName(
name: string
): ASPxClientMenu
#Parameters
Name | Type | Description |
---|---|---|
name | string | A string value specifying the toolbar name. |
#Returns
Type | Description |
---|---|
ASPx |
An ASPx |
#Remarks
The HTML editor’s client-side functionality allows you toolbars to be accessed programmatically on the client side. The GetToolbarByName method gets a client toolbar object specified by its name. A toolbar’s name is defined by the MenuItem.Name property.
Note that if an invalid name is passed using the parameter, this method returns null.
See Also