classdeprecated
Enumerator
js/foo_uie_jsplitter.js:125
Enumerator(active_x_object)
Deprecated.
Deprecated: use for ... of loop instead.
Parameters
| Name | Type | Description |
|---|---|---|
active_x_object | ActiveXObject | Any ActiveX collection object. |
Example
let e = new Enumerator(active_x_object);
for (e.moveFirst(); !e.atEnd(); e.moveNext()) {
console.log(e.item());
}