AssociationList Collection

AssociationList collection provides a collection of AssociationItem objects.

Properties

Count

Retrieves the number of items.

Item

Retrieves the AssociationItem object for the specified index.

Methods

Add

Adds an item.

Remove

Removes an item.

Examples

[JavaScript]

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

[VBScript]

For Each item In document.Config.Association.List
alert item.Name
Next

Version

Supported on EmEditor Professional Version 7.00 or later.