I'm just trying to create a table in PDF with this:
https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/editing/table
In general a nice thing.
1) The only way to set the Font of the (entire) table I found, is to set the Font for each singular block in each singular cell, and this before inserting the text.
That means I cannot just do this: AddTableCell().Blocks.AddBlock().InsertText("cell11");
Is there a simpler way, to have some Default for the entire Table ? I found this DefaultCellProperties thing, but this concerns only background and borders
2) There is this property
table.LayoutType = Telerik.Windows.Documents.Fixed.Model.Editing.Flow.TableLayoutType.FixedWidth;
The automatic works quiet well if you have text in the table, having f.e. an empty line, it shrinks the height of this line.
So I thought I changed to 'fixedwidth' and set it manually.
But than, I haven't found anything to set width oder height of Rows or Cells.
So what is this FixedWidth good for, how do I set the height of a Row or a ColumnWidth, although the concept of a column is kind of missing in this class.