KeyboardList Collection

KeyboardList collection provides a collection of KeyboardItem objects.

Properties

Count

Retrieves the number of items.

Item

Retrieves the KeyboardItem object for the specified index.

Methods

Add

Adds an item.

Remove

Removes an item.

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

Supported on EmEditor Professional Version 7.00 or later.