====== map_SetPixel ====== ===== Description ===== Set the value of a pixel in a map. ===== Function prototype ===== bool CExtAPI::map_SetPixel(ZMAP hMap, long x, long y, void* pValue); ===== Arguments ===== ^ Name ^ Type ^ Comment ^ | hMap | ZMAP | A ZMAP handle to a map, the pixel of which is to be set. | | x | long | The x-coordinate of the pixel. | | y | long | The y-coordinate of the pixel. | | pValue | void* | A pointer (of unknown type) to the user-supplied entity that shall provide the pixel value. | ===== Return value ===== False if an error occurred, and true otherwise. ===== Comments ===== None. ===== Example ===== Please refer to example given for [[zeolite:functions:map_GetPixel#Example|CExtAPI::map_GetPixel]].