MindFusion.Diagramming for JavaScript Programmer's Guide

Dictionary.forEachKey Method

See Also
 





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

Namespace: MindFusion.Collections
File: Dictionary.js

 Syntax

JavaScript  Copy Code

function forEachKey (func, [thisRef])

 Parameters

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

 See Also