自行解决,为了帮助后来人,特将关键代码(C#)如下:<br>Word.Range range=myWordDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;<br>Word.Table oTable=myWordDoc.Tables.Add(range,60,6,ref Nothing,ref Nothing);<br>oTable.Borders.InsideColor=oTable.Borders.OutsideColor=Word.WdColor.wdColorBlack;<br>oTable.Borders.InsideLineStyle=oTable.Borders.OutsideLineStyle=Word.WdLineStyle.wdLineStyleSingle;<br>oTable.Borders.InsideLineWidth=oTable.Borders.OutsideLineWidth=Word.WdLineWidth.wdLineWidth075pt;<br>oTable.Rows.AllowBreakAcrossPages=0;<br>oTable.Rows.First.HeadingFormat=-1;/**就是这个属性了,咋看真看出来,原来默认是0,-1才表式标题行重复**/