You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. FloodFill method |
Top Previous Next |
Declaration procedure FloodFill(X,Y: double; Color: TColor; FillStyle: TFillStyle);
Category
Description This method fills an area of the printer canvas using the current brush. FloodFill begins at the point (X,Y) and fills until the boundary specified by the color, Color, is encountered. FillStyle defines the method of fill used. (fsBorder will fill until the color, Color, is encountered and fsSurface will fill while the color, Color, is still encountered.)
See also TBaseReport Class, PageInvalid, TColor
Example (Delphi) FloodFill(2.0,3.0,clRed,fsBorder);
Example (C++Builder) FloodFill(2.0,3.0,clRed,fsBorder); |
You are reading help file online using chmlib.com
|