You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. RoundRect method |
Top Previous Next |
Declaration procedure RoundRect(X1,Y1,X2,Y2,X3,Y3: double);
Category
Description This method will draw a rectangle defined by the points (X1,Y1) and (X2,Y2). The corners of the rectangle will be drawn as quarters of an ellipse with a width of X3 and a height of Y3. The rectangle will be drawn with a border of the current pen and filled with the current brush.
See also TBaseReport Class, Ellipse, Rectangle
Example (Delphi) RoundRect(1.125,3.5,3.125,5.0,0.25,0.25);
Example (C++Builder) rp1->RoundRect(1.125,3.5,3.125,5.0,0.25,0.25); |
You are reading help file online using chmlib.com
|