MapSetAtΒΆ

MapSetAt means to insert an element in a map. First, the key is looked up. If the key is found, then the corresponding value is changed; otherwise a new key-value pair is created.

bool = MapSetAt(hMap, ssKey, dat)

Return Value

If the function succeeds, the return value bool is TRUE (1); otherwise it is FALSE (0).

Parameters

hMap

hMap Identifies the map.

ssKey

ssKey specifies the key that identifies the element to be set up.

dat

dat is a real, complex or string matrix.

History

Version Description
4.2.0 The dat parameter can contain 0-characters.

id-2089637