MigraDoc.DocumentObjectModel.Tables.Row myRow= myTable.AddRow();
//Fila Titulo
MigraDoc.DocumentObjectModel.Paragraph paraTitle= myRow[0].AddParagraph("Some text");
paraTitulo.Format.Alignment = MigraDoc.DocumentObjectModel.ParagraphAlignment.Center;
myRow.Format.Font.Size = 11;
myRow.Format.Font.Bold = true;
myRow.TopPadding = 3;
myRow.BottomPadding = 2;
myRow.Format.Borders.Bottom.Width = 2.5;
myRow.Format.Borders.Right.Visible = false;
myRow.Format.Borders.Left.Visible = false;
myRow.Format.Borders.Top.Visible = false;
myRow.Format.Borders.Color = MigraDoc.DocumentObjectModel.Colors.LightBlue;
Asked
Active
Viewed 739 times
0

Paul Roub
- 36,322
- 27
- 84
- 93

user3357141
- 199
- 1
- 3
- 16
1 Answers
0
Border shadows are not implemented in MigraDoc.
You could add a dummy column to the right and a dummy row at the bottom and use those to draw a shadow yourself. This will look good only if the table fits on a single page.

I liked the old Stack Overflow
- 20,651
- 8
- 87
- 153
-
Thanks! But can you give me an example for that? – user3357141 Jun 17 '14 at 15:05