wordDoc.Tables.Item(1).Cell(12, 1).Range.Text = "cell121";
////******************
wordDoc.Tables.Item(1).Cell(12, 3).Range.Text = "cell123";
#endregion
#region 第十三行显示
wordDoc.Tables.Item(1).Cell(13,1).Merge(wordDoc.Tables.Item(1).Cell(13,2));
wordDoc.Tables.Item(1).Cell(13,3).Merge(wordDoc.Tables.Item(1).Cell(13,4));
////******************
wordDoc.Tables.Item(1).Cell(13, 1).Range.Text = "cell131";
////******************
wordDoc.Tables.Item(1).Cell(13, 3).Range.Text = "cell133";
#endregion
wordDoc.Tables.Item(1).Select();
wordApp.Application.Selection.Cut();
//重新成声所有表
for(int i = 0; i<=DT.Rows.Count-1;i++)
{
wordApp.Application.Selection.Paste();
int k = i+1;
#region 更新数据
&nb
| 对此文章发表了评论 |

