Gets the value associated with the specified key within the Dictionary.
Namespace: MindFusion.Mapping
Package: Dictionary.js
JavaScript Copy Code |
---|
function get (key) |
Object. The key whose value to get.
The following code creates a new Dictionary adds three LatLong instances with keys the cities they belong to. Then it checks if Paris is among the keys of the Dictionary:
JavaScript Copy Code |
---|
var m = MindFusion.Mapping; var locations = new m.Dictionary(); |