ヘッダーのみで構成される Word ドキュメント内に既存のテーブルがあります。そのテーブルにプログラムでデータを追加したい。行を追加したいのですが、参照方法が見つかりません:
私は次のことを試しました:
Table myTable = document.Tables[0];
Row myRow = new Row();
myTable.Rows.Add(myRow);
myTable.Rows[0].Cells[0].Paragraphs.First().Append("Sample Data");
myTable.Rows[0].Cells[1].Paragraphs.First().Append("Sample Data");
これは、ビルド後にエラーを返します。The type 'Novacode.Row' has no constructors defined