c# word interop table add row before code example
Example: c# word interop add row to table
foreach (Table table in myDocument.Tables)
{
if (table.Title == "table_alt_text")
{
// However you want to manipulate your table
}
}