Hi
my flow document works but I would like to put round corners around my paragraph
How to do it?
Found this - but don't know how to do it - and it isn't exactly what I want
how-can-i-make-a-paragraph-corners-round
This is my code:
Paragraph h1 = new Paragraph();
h1.FontSize = 30;
h1.Background = Brushes.LightGray;
h1.TextAlignment = TextAlignment.Center;
h1.Inlines.Add(new Run(">>> Content <<<"));
doc.Blocks.Add(h1);