KeyboardList collection provides a collection of KeyboardItem objects.
Retrieves the number of items. |
|
Retrieves the KeyboardItem object for the specified index. |
list = new Enumerator( document.Config.Keyboard.List );
for( ; !list.atEnd(); list.moveNext() ){
item = list.item();
alert( item.Key );
}
For Each item In document.Config.Keyboard.List
alert item.Key
Next
Supported on EmEditor Professional Version 7.00 or later.