ImgFillRect |
Top Previous Next |
Prototype
ImgFillRect(intImageHandle,intLeft,intTop,intRight,intBottom,intColor)
Description
Draw color fill rectangular.
Parameters
intImageHandle: integer value corresponding to image handle.
intLeft: integer value corresponding to rectangular left coordinate.
intTop: integer value corresponding to rectangular top coordinate
intRight: integer value corresponding to rectangular right coordinate
intBottom: integer value corresponding to rectangular bottom coordinate
intColor: integer value corresponding to rectangular fill color.
Returned Value
None
Notes
None.
Example
// Draw fill rectangular ImgFillRect(_CurrentImage, 100, 200, 150, 275, 65566);
|