如何显示WORD中某行段的内容(100分)

  • 主题发起人 主题发起人 fee
  • 开始时间 开始时间
F

fee

Unregistered / Unconfirmed
GUEST, unregistred user!
请问如何选定word中第N行或第N段中的内容?
 
var MyWord, What, Which, Count, Name:OleVariant;
初始化MyWord后
MyWord:=CreateOleObject('Word.Application');
去到第N页
begin
What:=wdGoToPage;
Which:=wdGoToNext;
// Count:=
Name:='10'; //第N页
MyWord.Selection.GoTo(What,Which,Count,Name);
end;
去到第N行
begin
What:=wdGoToLine;
Which:=wdGoToFirst;
Count:=25;
Name:='';
MyWord.Selection.GoTo(What,Which,Count,Name);
end;


 
后退
顶部