Dear Christos,
your source code is correct. Most likely you are setting up the tabular section in the document incorrectly. I made a small example for you with explanations.
So, we have a document with a tabular section "TabularSection1" and there we need to display the product image. Add the "Photo" attribute to the form, the type of this attribute is "String" (see screenshot 1).
Then at the column "Photo" we change the type to "Image field" and set the size of the picture to "Proportional" (see screenshots 2 and 3).
After completing these settings, your source code will work.
To test it, I made my own short procedure:
| Code |
|---|
picAddress = "D:\Temp\Pictires\Picture_1.jpg";
PictureBinaryData = New BinaryData(picAddress);
PictureAddress = PutToTempStorage(PictureBinaryData);
For Each curElement In Object.TabularSection1 Do
curElement.Photo = PictureAddress;
EndDo;
|
The last screenshot shows the result.
The size of the displayed images can be changed by changing the properties of the "Photo" column.