-
This was originally asked as an issue (#138) Having a class like this:
I have a list of Element I would like to show as tables in a Document. Also, I would like to place them in the given coordinates (Left, Top, Height, Width). Units are millimeters. This is how I'm trying to do it:
But the result is not quite what I'm looking for: The first 6 cells showing on document, should be showing on the same row, but instead, they are showing one on top of the other. What am I doing wrong? I want every element to be drawn as a separate table, so I'm not considering drawing them as columns of the same table. @ThomasHoevel maybe you can give me some advice |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You have to set If you download the PDFsharp repo and the assets, check out file |
Beta Was this translation helpful? Give feedback.
You have to set
.WrapFormat.Style = WrapStyle.Through;
for the TextFrame. And maybe play a little bit with the other WrapFormat properties.If you download the PDFsharp repo and the assets, check out file
TextFrame-Layout.pdf
in folderassets\archives\grammar-by-example\GBE\ReferencePDFs\GDI 1.40
for more information.