You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. GraphicFieldToBitmap method |
Top Previous Next |
Declaration procedure GraphicFieldToBitmap(GraphicField: TGraphicField; Bitmap: TBitmap);
Category
Description This method will convert a TGraphicField (graphical data from a database) to a bitmap.
NOTE: You must include RpDBUTIL in your Uses statement to access this procedure.
See also TBaseReport Class, PrintBitmap, PrintBitmapRect, TGraphicField
Example (Delphi) // Convert and print a TGraphicField Bitmap := TBitmap.Create; GraphicFieldToBitmap(Table1Graphic,Bitmap); PrintBitmapRect(5.375,3.5,7.375,5.5,Bitmap); Bitmap.Free;
Example (C++Builder) Bitmap := new Graphic::TBitmap(); rp1->GraphicFieldToBitmap(Table1Graphic,Bitmap); rp1->PrintBitmapRect(5.375,3.5,7.375,5.5,Bitmap); delete Bitmap; |
You are reading help file online using chmlib.com
|