如何用程序控制word表格,合并单元格?等.......20分(100分)

  • 主题发起人 主题发起人 awen168
  • 开始时间 开始时间
A

awen168

Unregistered / Unconfirmed
GUEST, unregistred user!
程序创建出来的表格,如何再用程序控制合并。
 
Wordapplication1.Selection.Font.Size :=10;
  //记录数决定表格的行数
  t:=doc.tables.Add(Wordapplication1.selection.range,counts+1,5);//5列
  t.cell(1,1).range.text:= '单位';
  t.Cell(1,1).Width:=120;
  t.cell(1,1).range.Paragraphs.Alignment:= wdAlignParagraphCenter;
  t.cell(1,2).range.text:= '姓名';

合并:doc.Selection.Cells.Merge
 
worddocument1.Tables.Item( 1 ).Cell(1,1).Merge(worddocument1.Tables.Item(1).Cell( 1,2));
worddocument1.Tables.Item( 1 ).Cell(2,1).Merge(worddocument1.Tables.Item(1).Cell( 3,1));
 
后退
顶部