Configs Collection¶
Configs collection provides a collection of Config objects. Retrieves the number of configurations. Retrieves the Config object for the configuration of the specified index. Supported on EmEditor Professional Version 7.00 or later.Properties¶
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¶