カスタマイズ
ツールバーに新しいボタンを作成します。 ツールバーのレイアウトは、CreateToolbarControl コマンドを使用して、区切り線、改行などを追加して変更することができます。
CreateToolbarButton( Toolbar, Command, [Index] ); |
パラメータ | タイプ | 詳細 |
---|---|---|
Toolbar | 文字列 | ボタンを追加するツールバーの一意の識別子。 |
Command | 文字列 | 新しいボタンに関連付けられたコマンドのユニークな識別子。 Command.UID を呼び出すことにより、コマンドの一意な識別子を判別できます。 |
Index | Integer | ツールバーでのボタンの位置(0 は最初のボタン、1 は 2 番目のボタン、-1 は最後のボタン)。
デフォルト値:-1(最後に追加) |
sub Install() dim file, toolbar, command, path path = Application.InstallationPath( siUserPath ) file = path & "\Data\Scripts\myUtils.vbs" 'Create Toolbar toolbar = CreateToolbar("Utilities") 'Create Commands command = CreateScriptCommand( "Simplify It" ,_ "makeSimple" ,_ file ,_ "MakeSimple",_ "Makes life easier." ) 'Add button to toolbar. CreateToolbarButton toolbar, command end sub |