Go to: Synopsis. Return value. MEL examples.
 
addNewShelfTab (string $newName) 
	 
None
| Variable Name | Variable Type | Description | 
|---|---|---|
| $newName | string | Name of the new tab, or "" to automatically assign a name. | 
// Create a new shelf tab called "myTabName" addNewShelfTab "myTabName"; // Result: myTabName // // Create a new shelf tab with a default name addNewShelfTab ""; // Result: shelfLayout1 //