KeyboardList コレクションは KeyboardItem オブジェクトのコレクションを提供します。
| Count | アイテムの数を取得します。 |
| Item | 指定したインデックスの KeyboardItem オブジェクトを取得します。 |
| Add | アイテムを追加します。 |
| Remove | アイテムを削除します。 |
list = new Enumerator( document.Config.Keyboard.List );
for( ; !list.atEnd(); list.moveNext() ){
item = list.item();
alert( item.Name );
}
For Each item In document.Config.Keyboard.List
alert item.Name
Next
EmEditor Professional Version 7.00 以上で利用できます。