MapLoadΒΆ

MapLoad loads a map from a file, that was created with the MapSave function.

bool = MapLoad(hMap, ssFileName)

Return Value

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

Parameters

hMap

hMap Identifies the map.

ssFileName

ssFileName is the complete file name.

Example

hMap = MapCreate();
MapLoad(hMap, "c:/data.map");

id-219779