addNewShelfTab (string $newName)
なし
変数名 | 変数型 | 説明 |
---|---|---|
$newName | string | 新しいタブの名前です。名前を自動的に割り当てる場合は、"" です。 |
// Create a new shelf tab called "myTabName" addNewShelfTab "myTabName"; // Result: myTabName // // Create a new shelf tab with a default name addNewShelfTab ""; // Result: shelfLayout1 //