Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created April 9, 2024 20:12
Show Gist options
  • Save bjoerntx/f5b938369b2fcdd26b6ea73453b32294 to your computer and use it in GitHub Desktop.
Save bjoerntx/f5b938369b2fcdd26b6ea73453b32294 to your computer and use it in GitHub Desktop.
public void ApplyTableStyle(Table table, TableStyle tableStyle)
{
// loop through rows and check for header row
foreach (TableRow row in table.Rows)
{
if (row.IsHeader)
{
row.CellFormat = tableStyle.HeaderRowFormat;
}
else
{
row.CellFormat = tableStyle.TableRowFormat;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment