你好,我有一个文件,我想用1列,2行
添加表格
在第一行我想添加4列,1行
的表
在第二行我想添加3列,1行的表。
这是代码
private static void Scene()
{
Microsoft.Office.Interop.Word.Application winword = new Microsoft.Office.Interop.Word.Application();
winword.Visible = false;
object missing = System.Reflection.Missing.Value;
Microsoft.Office.Interop.Word.Document document = winword.Documents.Add(ref missing, ref missing, ref missing, ref missing);
Table firstTable = document.Tables.Add(document.Range(), 2, 1);
firstTable.Borders.Enable = 1;
firstTable.Rows[1].Range.Tables.Add(firstTable.Rows[1].Range, 1, 4);
firstTable.Rows[2].Range.Tables.Add(firstTable.Rows[2].Range, 1, 3);
}
我得到了这个例外
“此方法或属性不可用,因为整个表都是 没有被选中。“