You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. CreateRect method |
Top Previous Next |
Declaration function CreateRect(X1,Y1,X2,Y2: double): TRect;
Category
Description This method will return a TRect record initialized to the rectangle defined by the points (X1,Y1) and (X2,Y2).
See also TBaseReport Class, CopyRect, TextRect, TRect
Example (Delphi) MyRect := CreateRect(1.00,6.00,3.00,8.00);
Example (C++Builder) MyRect = rp1->CreateRect(1.00,6.00,3.00,8.00); |
You are reading help file online using chmlib.com
|