KeyboardList collection provides a collection of KeyboardItem objects.
| Count | Retrieves the number of items. |
| Item | Retrieves the KeyboardItem object for the specified index. |
| Add | Adds an item. |
| Remove | Removes an item. |
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
Supported on EmEditor Professional Version 7.00 or later.
Send feedback on this topic to Emurasoft