Show/Hide Toolbars

EmEditor Help

Navigation: EmEditor Help > Macro Reference

Macro: Configs Collection

Scroll Prev Top Next More
EmEditor Home - EmEditor Help - EmEditor Macro Reference

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.

Copyright © 2003-2023 by Emurasoft, Inc.