documentationfor yFiles for HTML 2.6

IEnumerator<T>

Provides methods to iterate over a collection or list of elements of the same type.

Inheritance Hierarchy
IEnumerator

Examples

const e = someList.getEnumerator()
// always move before you access
while (e.moveNext()) {
  // get the current element
  const current = e.current
}

Type Parameters

T

Type Details

yfiles module
core
yfiles-umd modules
All modules
Legacy UMD name
yfiles.collections.IEnumerator

Properties

Methods