IWTable tableExample = section.ExamplesFooters.Example.AddTable();
formatExample.Borders.BorderType = BorderStyle.None;
tableExample.ResetCells(1, 1, formatExample, 265);
Example = tableExample[0, 0].AddParagraph() as WParagraph;
Example.AppendPicture(Image.FromFile(Path.Combine(path, "st_logo.png")));
(Example.Items[0] as WPicture).Width = 232.5f;
(Example.Items[0] as WPicture).Height = 54.75f;
tableExample.TableFormat.HorizontalAlignment = RowAlignment.Center;