操作Word表格时如何跳出单元格?(50分)

  • 主题发起人 主题发起人 coolmyf
  • 开始时间 开始时间
C

coolmyf

Unregistered / Unconfirmed
GUEST, unregistred user!
操作生成的表格,到了最后一个单元格,想离开表格插入一段文字,但是加入的文字却是在最后一个单元格内的,如何离开对表格的操作呢?
 
wordapp.Selection.MoveDown (Unit:=wdLine, Count:=1);
 
好象不起作用
 
而且这个方法我也试过,出错
 
假设第一个表格的第14行,第2列为最后一个单元格。
wordapp.ActiveDocument.tables.item(1).Cell(14,2).range.select;
wordapp.Selection.MoveDown (Unit:=wdLine, Count:=1);
 
var
unit1,unitcount:olevariant;
begin
unit1:=5;
unitcount:=1;
wordobject.Application.Selection.MoveDown(unit1,unitcount,EmptyParam);
end;
 
后退
顶部