You are not logged in.
Pages: 1
Hi,
I need to add lines of text to the right of the image.
It is possible to add an image column? 
I use DrawTextAcrossCols for String.
Maybe something like this:
  AddColumnHeaders(['Image','Description');
  AddColumn( 10,  50, caLeft, False); // Image
  AddColumn( 50, 100, caCenter, False); // String
  DrawAcrossCols(
    [MyBitmap, 'Line 1 description'],
      [drBMP, drText]);
  DrawAcrossCols(
    [nil, 'Line 2 description'],
    [drBMP, drText]);
  DrawAcrossCols(
    [nil, 'Line 3 description'],
    [drBMP, drText]);Offline
Pages: 1