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)
只會打印該行的第一個字符。