Documentation/Enumerator
classdeprecated

Enumerator

js/foo_uie_jsplitter.js:125
Enumerator(active_x_object)
Deprecated.

Deprecated: use for ... of loop instead.

Parameters

NameTypeDescription
active_x_objectActiveXObject

Any ActiveX collection object.

Example

let e = new Enumerator(active_x_object);
for (e.moveFirst(); !e.atEnd(); e.moveNext()) {
  console.log(e.item());
}
method

atEnd

js/foo_uie_jsplitter.js:141
atEnd()

Returns a boolean value indicating if the enumerator has reached the end of the collection.

Returns

boolean
method

item

js/foo_uie_jsplitter.js:148
item()

Returns the item at the current enumerator position.

Returns

*
method

moveFirst

js/foo_uie_jsplitter.js:155
moveFirst()

Resets enumerator position to the first item.

method

moveNext

js/foo_uie_jsplitter.js:162
moveNext()

Moves enumerator position to the next item.