SetFillStyle(style) SetFillStyle(#FILLGRADIENT, type, startcol, endcol[, angle, t]) (V2.0) SetFillStyle(#FILLTEXTURE, brush_id[, x, y]) (V2.0) SetFillStyle(#FILLNONE[, thickness]) (V2.0)
#FILLNONE, which means that
just the outlines are drawn.
Currently the following styles are supported:
#FILLCOLOR:
#FILLNONE:thickness is 1 which means
an outline thickness of a single pixel. Note that #FILLNONE only supports
the #SHADOW and #BORDER form styles when layers are enabled. Otherwise no shadow
or border will be drawn.
#FILLGRADIENT:angle which will rotate the gradient, and there
is an optional table argument for even more options;
See CreateGradientBGPic for details. (V2.0)
#FILLTEXTURE:x and y parameters are new in Hollywood 4.6.
They allow you to specify an offset into the texture brush.
Texturing will then start from this offset in the brush.
The default for these arguments is 0/0 which means start at
the top-left corner inside the texture brush. (V2.0)
SetFillStyle(#FILLCOLOR) Box(0, 0, 320, 256, #RED)Draw a filled red rectangle at 0:0 with a dimension of 320x256.