KeyboardList コレクション

KeyboardList コレクションは KeyboardItem オブジェクト のコレクションを提供します。

プロパティ

Count

アイテムの数を取得します。

Item

指定したインデックスの KeyboardItem オブジェクト を取得します。

メソッド

Add

アイテムを追加します。

Remove

アイテムを削除します。

[JavaScript]

list = new Enumerator( document.Config.Keyboard.List );
for( ; !list.atEnd(); list.moveNext() ){
item = list.item();
alert( item.Key );
}

[VBScript]

For Each item In document.Config.Keyboard.List
alert item.Key
Next

バージョン

EmEditor Professional Version 7.00 以上で利用できます。