MindFusion.Diagramming for JavaScript Programmer's Guide

Dictionary.forEach Method

See Also
 





Calls a defined callback function for each entry in the dictionary.

Namespace: MindFusion.Collections
File: Dictionary.js

 Syntax

JavaScript  Copy Code

function forEach (func, [thisRef])

 Parameters

func
A function that accepts three arguments. forEach calls this function one time for each element in the dictionary.
thisRef
Optional. A value passed as the first parameter of func.

 See Also