ASPxClientRibbon.GetTabByName(name) Method
In This Article
Returns a tab specified by its name.
#Declaration
TypeScript
GetTabByName(
name: string
): ASPxClientRibbonTab
#Parameters
Name | Type | Description |
---|---|---|
name | string | A string value specifying the name of the tab. |
#Returns
Type | Description |
---|---|
ASPx |
An ASPx |
#Remarks
The ribbon control’s client-side functionality allows tabs to be accessed programmatically on the client side. The GetTabByName method gets a client tab object specified by its name. A tab’s name is defined by the RibbonTab.Name property.
Note that if an invalid name is passed via the parameter, this method returns null.
See Also