How does one adjust the margins of a cell in a table?
Thank you!
foreach (Section sec in doc.Sections)
{
foreach (Table table in sec.Tables)
{
table.TableFormat.Paddings.Left = 0;
table.TableFormat.Paddings.Right = 0;
}
}