2011-10-20 205 views
2

如何在VBA腳本中使用Selection對象從Word文檔獲取一行?事情是這樣的:使用選擇對象(vba)從word文檔獲取一行

Selection.MoveDown Unit:=wdLine, Count:=15 
'print the 15th line here 

編輯:當我這樣做:

Selection.MoveDown Unit:=wdLine, Count:=15 
MsgBox (Selection.Text) 

只會打印該行的第一個字符。

回答

6

您需要展開的選擇:

Selection.MoveDown Unit:=wdLine, Count:=15 
Selection.Expand wdLine 
MsgBox (Selection.Text)