KeyboardList Collection¶
KeyboardList collection provides a collection of KeyboardItem objects. Retrieves the number of items. Retrieves the KeyboardItem object for the specified index. Adds an item. Removes an item. Supported on EmEditor Professional Version 7.00 or later.Properties¶
Methods¶
Examples¶
[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
Version¶