Configs Collection

Configs collection provides a collection of Config objects.

Properties

Count

Retrieves the number of configurations.

Item

Retrieves the Config object for the configuration of the specified index.

Examples

[JavaScript]

cfgs = new Enumerator( editor.Configs );
for( ; !cfgs.atEnd(); cfgs.moveNext() ){
cfg = cfgs.item();
alert( cfg.Name );
}

[VBScript]

For Each cfg In editor.Configs
alert cfg.Name
Next

Version

Supported on EmEditor Professional Version 7.00 or later.