I need to insert
var f = new Floater
{
Padding = new Thickness(0, 0, 0, 0),
Margin = new Thickness(0, 0, 5, 0),
HorizontalAlignment = HorizontalAlignment.Left,
Width = 210
};
into the table cell
var table = myFlowDocument.Document.Blocks.FirstBlock as Table;
table.RowGroups[0].Rows[0].Cells[0].SetValue(???);
And really cannot figure our how to do it.
Also it is unclear how to clean the cell.
Any clue?
Thank you!
See the documentation for the
Blocksproperty on MSDN :