Configs collection provides a collection of Config objects.
Retrieves the number of configurations. |
|
Retrieves the Config object for the configuration of the specified index. |
cfgs = new Enumerator( editor.Configs );
for( ; !cfgs.atEnd(); cfgs.moveNext() ){
cfg = cfgs.item();
alert( cfg.Name );
}
For Each cfg In editor.Configs
alert cfg.Name
Next
Supported on EmEditor Professional Version 7.00 or later.