documentationfor yFiles for HTML 3.0.0.3

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

Properties

Methods