====== zmap_GetMosaicFlag ====== ===== Description ===== Get the mosaic flag for a map, which states whether it is tiled or not. ===== Files ===== ^ Declaration | ''Zeolite.h'' | ^ Implementation | ''Zeolite.cpp'' | ===== Function prototype ===== bool zmap_GetMosaicFlag(ZMAP hMap); ===== Arguments ===== ^ Name ^ Type ^ Comment ^ | //hMap// | ''ZMAP'' | A [[zeolite:types:ZMAP]] handle to the map, the mosaic flag of which is to be retrieved. | ===== Return value ===== True if: * //hMap// points to a valid map object, and; * The map is allocated as a mosaic, with an allocation mode of either MAPALLOC_MOSAIC, MAPALLOC_MOSAIC_TEMP, MAPALLOC_MOSAIC_SYSPAGEFILE, or MAPALLOC_MOSAIC_MEMMAPFILE (see [[zeolite:functions:zmap_GetAllocMode]]). False otherwise. ===== Comments ===== None.