Answers for "c# word interop add row to table"

C#
0

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
        }
    }
Posted by: Guest on November-17-2020

C# Answers by Framework

Browse Popular Code Answers by Language