GfxSelectSolidBrush
- create / select graphic brush
|
Low-level graphics
(AFL 3.0) |
| SYNTAX |
GfxSelectSolidBrush( color ) |
| RETURNS |
NOTHING |
| FUNCTION |
GfxSelectSolidBrush initializes a brush with a specified solid color. Then selects the brush as current for subsequent drawing operations.
Parameters:
- color - specifies color for the brush
NOTE: This is LOW-LEVEL graphic function. To learn more about low-level
graphic functions please read TUTORIAL: Using low-level graphics.
|
| EXAMPLE |
GfxSelectPen( colorGreen, 2 );
GfxSelectSolidBrush( colorYellow );
GfxPolygon(250,200,200,200,250,0,200,50); |
| SEE ALSO |
GfxLineTo() function , GfxMoveTo() function , GfxSelectPen() function , GfxSetPixel() function , GfxTextOut() function |
References:
The GfxSelectSolidBrush function is used in the following formulas
in AFL on-line library:
|